Last updated: 2022-06-29

Checks: 7 0

Knit directory: MeteoECGapFilling/

This reproducible R Markdown analysis was created with workflowr (version 1.7.0). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.


Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.

Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.

The command set.seed(20220628) was run prior to running the code in the R Markdown file. Setting a seed ensures that any results that rely on randomness, e.g. subsampling or permutations, are reproducible.

Great job! Recording the operating system, R version, and package versions is critical for reproducibility.

Nice! There were no cached chunks for this analysis, so you can be confident that you successfully produced the results during this run.

Great job! Using relative paths to the files within your workflowr project makes it easier to run your code on other machines.

Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility.

The results in this page were generated with repository version ec7acaa. See the Past versions tab to see a history of the changes made to the R Markdown and HTML files.

Note that you need to be careful to ensure that all relevant files for the analysis have been committed to Git prior to generating the results (you can use wflow_publish or wflow_git_commit). workflowr only checks the R Markdown file, but you know if there are other scripts or data files that it depends on. Below is the status of the Git repository when the results were generated:


Ignored files:
    Ignored:    .Rproj.user/
    Ignored:    analysis/figure/

Untracked files:
    Untracked:  .Rbuildignore
    Untracked:  .Rhistory
    Untracked:  .idea/
    Untracked:  DESCRIPTION
    Untracked:  LICENSE
    Untracked:  LICENSE.md
    Untracked:  NAMESPACE
    Untracked:  R/REddyProc_tools.R
    Untracked:  R/gaps.R
    Untracked:  R/source_rmd.R
    Untracked:  R/utils.R
    Untracked:  analysis/REddyProc_testing.rmd
    Untracked:  data/FLX_DE-Hai_FLUXNET2015_FULLSET_HH_2000-2012_1-4.csv

Unstaged changes:
    Modified:   analysis/_site.yml
    Modified:   analysis/fragments/variable_assess_gapfilling.rmd

Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.


These are the previous versions of the repository in which changes were made to the R Markdown (analysis/MDS_gap_filling_quality.rmd) and HTML (docs/MDS_gap_filling_quality.html) files. If you’ve configured a remote Git repository (see ?wflow_git_remote), click on the hyperlinks in the table below to view the files as they were in that past version.

File Version Author Date Message
Rmd ec7acaa Simone Massaro 2022-06-29 Basis MDS assment for all variables
html 35f84c4 Simone Massaro 2022-06-28 Build site.
Rmd 533f860 Simone Massaro 2022-06-28 Basic MDS gap filling quality assement for Tair
html 532cc5e Simone Massaro 2022-06-28 Build site.
Rmd 26891d9 Simone Massaro 2022-06-28 Basic MDS gap filling quality assement for Tair
html 4df1132 Simone Massaro 2022-06-28 Build site.
Rmd 50c26b1 Simone Massaro 2022-06-28 Basic quality assement for Tair

library(tidyverse)
── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ──
✔ ggplot2 3.3.5     ✔ purrr   0.3.4
✔ tibble  3.1.7     ✔ dplyr   1.0.9
✔ tidyr   1.2.0     ✔ stringr 1.4.0
✔ readr   2.1.2     ✔ forcats 0.5.1
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag()    masks stats::lag()
theme_set(theme_bw())
library(Metrics)
library(lubridate)

Attaching package: 'lubridate'
The following objects are masked from 'package:base':

    date, intersect, setdiff, union
library(xfun)

Attaching package: 'xfun'
The following objects are masked from 'package:base':

    attr, isFALSE
# parallel execution
library(furrr)
Loading required package: future
n_workers <- 12
plan(multisession, workers = n_workers)

# number repetition for each gap
n_rep <-  100

#load_all() doesn't works with futures, so loading only code in R dir
list.files("R", full.names = TRUE) %>%
  walk(source)

Marginal Distribution Sampling (MDS)

Assess the quality of the gap filling using the default algorith from REddyProc, one of the standard implementations.

The variables used for filling gaps are, that are used according to the REddyProc default:

  • SW_IN
  • Tair
  • VPD

Load Data

The data from the Eddy Covariance station in Hainich is used for the analysis

hai_path <- here::here("data/FLX_DE-Hai_FLUXNET2015_FULLSET_HH_2000-2012_1-4.csv")
hai_raw <- read_csv(hai_path, col_types = cols(TIMESTAMP_START = col_datetime(format="%Y%m%d%H%M"), TIMESTAMP_END = col_datetime(format="%Y%m%d%H%M")), na = c("-9999", "-9999.99"))
meteo_vars <-
  list(
    "Tair" = "TA_F",
    "SW_IN" = "SW_IN_F",
    "LW_IN" = "LW_IN_F" ,
    "VPD" = "VPD_F",
    "P" = "P_F",
    "PA" = "PA_F"
  )

meteo_qc <- c(
  "TA_F_QC", "SW_IN_F_QC", "LW_IN_F_QC",  "VPD_F_QC", "P_F_QC", "PA_F_QC"
)
# Note this include the oberservations that are gap filled.
# REddyProc doesn't work if there are gaps in the timeseries so can't remove them from the dataset
hai <- hai_raw %>%
    mutate(
      Tair = na_if(TA_F, TA_F_QC !=0),
      SW_IN = na_if(SW_IN_F, SW_IN_F_QC !=0),
      LW_IN = na_if(LW_IN_F, LW_IN_F_QC != 0),
      VPD = na_if(VPD_F, VPD_F_QC !=0),
      P = na_if(P_F, P_F_QC != 0),
      PA = na_if(PA_F, PA_F_QC != 0)
    ) %>%
    select(TIMESTAMP_END, !!!meteo_vars)

Tair

generate artificial gaps and then fill the data using REddyProc

# go up to 60 days which is the maximium gap is going to be filled
# 1.1 is needed because for some unknown reasons, when converting to interger 1 becomes 0 (maybe some floating point related issue)
gaps_lengths <-  seq_log(1.1, 24 * 2 * 30 * 2 , offset = 20, length.out = 30) %>%
        rep(n_rep) %>%
        as.integer()
Tair_rmse <- gaps_lengths %>%
        split_vector(n_workers) %>%
        future_map_dfr(~gap_fill_EProc_rmse(hai, "Tair", .x), seed=TRUE)
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
Tair_rmse
# A tibble: 3,000 × 2
    rmse gap_length
   <dbl>      <int>
 1 5.23           1
 2 3.81           5
 3 3.81           9
 4 1.18          15
 5 4.25          21
 6 0.737         29
 7 3.34          38
 8 2.79          49
 9 2.24          62
10 1.45          77
# … with 2,990 more rows
Tair_rmse_stat <- Tair_rmse %>%
  group_by(gap_length) %>%
  summarise(mean = mean(rmse), sd = sd(rmse)) %>%
    mutate(error_high = mean + sd, error_low = mean - sd)
Tair_rmse_stat %>%
  mutate(gap_length = gap_length / 2) %>%
  ggplot(aes(gap_length)) +
  geom_ribbon(aes(ymin = error_low, ymax = error_high), alpha = .7) +
  geom_line(aes(y=mean)) +
  labs(x = "Gap Lengths [hours]", y = "RMSE [°C]")

Version Author Date
fbf60ea Simone Massaro 2022-06-29
35f84c4 Simone Massaro 2022-06-28
532cc5e Simone Massaro 2022-06-28
4df1132 Simone Massaro 2022-06-28

SW_IN

knit_template("analysis/fragments/variable_assess_gapfilling.rmd", var = "SW_IN", unit="W m-2")

```r
cache_rds({
  # go up to 60 days which is the maximium gap is going to be filled
    # 1.1 is needed because for some unknown reasons, when converting to interger 1 becomes 0 (maybe some floating point related issue)
    gaps_lengths <-  seq_log(1.1, 24 * 2 * 30 * 2 , offset = 15, length.out = 30) %>%
            rep(n_rep) %>%
            as.integer()

    SW_IN_rmse <- gaps_lengths %>%
            split_vector(n_workers) %>%
            future_map_dfr(~gap_fill_EProc_rmse(hai, "SW_IN", .x))

    SW_IN_rmse_stat <- SW_IN_rmse %>%
      group_by(gap_length) %>%
      summarise(mean = mean(rmse), sd = sd(rmse)) %>%
        mutate(error_high = mean + sd, error_low = mean - sd)
})
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
```

```
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
```

```
1
```

```
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
```

```
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
```

```
2
```

```
Mean diurnal course with window size of 1 days: .
```

```
2
```

```
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
```

```
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
```

```
2
```

```
Mean diurnal course with window size of 1 days: .
```

```
6
```

```
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
```

```
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
```

```
2
```

```
Mean diurnal course with window size of 1 days: .
```

```
10
```

```
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
```

```
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
```

```
2
```

```
Mean diurnal course with window size of 1 days: .
```

```
15
```

```
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
```

```
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
```

```
2
```

```
Mean diurnal course with window size of 1 days: .
```

```
22
```

```
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
```

```
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
```

```
2
```

```
Mean diurnal course with window size of 1 days: .
```

```
30
```

```
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
```

```
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
```

```
2
```

```
Mean diurnal course with window size of 1 days: .
```

```
39
```

```
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
```

```
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
```

```
2
```

```
Mean diurnal course with window size of 1 days: .
```

```
50
```

```
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
```

```
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
```

```
2
```

```
Mean diurnal course with window size of 1 days: .
```

```
63
```

```
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
```

```
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
```

```
2
```

```
Mean diurnal course with window size of 1 days: .
```

```
79
```

```
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
```

```
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
```

```
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.79
Mean diurnal course with window size of 2 days: .
.67
Mean diurnal course with window size of 7 days: .
34
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 4 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 8 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 12 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
10
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 17 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
15
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 24 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
22
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 32 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
30
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 41 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
39
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 52 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
50
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 65 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
63
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 81 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
2
Mean diurnal course with window size of 1 days: .
79
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 100 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
96
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 122 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
24
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 150 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
52
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 182 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.2
Mean diurnal course with window size of 1 days: .
.96
Mean diurnal course with window size of 2 days: .
84
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 221 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
27
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 267 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
..2
Mean diurnal course with window size of 1 days: .
..96
Mean diurnal course with window size of 2 days: .
.96
Mean diurnal course with window size of 7 days: .
73
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 322 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.128
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 388 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...2
Mean diurnal course with window size of 1 days: .
...96
Mean diurnal course with window size of 2 days: .
..96
Mean diurnal course with window size of 7 days: .
.194
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 468 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....2
Mean diurnal course with window size of 1 days: .
....96
Mean diurnal course with window size of 2 days: .
...96
Mean diurnal course with window size of 7 days: .
..274
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 562 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.....2
Mean diurnal course with window size of 1 days: .
.....96
Mean diurnal course with window size of 2 days: .
....96
Mean diurnal course with window size of 7 days: .
...368
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
......2
Mean diurnal course with window size of 1 days: .
......96
Mean diurnal course with window size of 2 days: .
.....96
Mean diurnal course with window size of 7 days: .
....480
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 811 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........2
Mean diurnal course with window size of 1 days: .
........96
Mean diurnal course with window size of 2 days: .
.......96
Mean diurnal course with window size of 7 days: .
......480
Mean diurnal course with window size of 14 days: .
.137
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 973 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.........2
Mean diurnal course with window size of 1 days: .
.........96
Mean diurnal course with window size of 2 days: .
........96
Mean diurnal course with window size of 7 days: .
.......480
Mean diurnal course with window size of 14 days: .
..299
Finished gap filling of 'SW_IN' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1167 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
...........2
Mean diurnal course with window size of 1 days: .
...........96
Mean diurnal course with window size of 2 days: .
..........96
Mean diurnal course with window size of 7 days: .
.........480
Mean diurnal course with window size of 14 days: .
....493
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1399 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
.............2
Mean diurnal course with window size of 1 days: .
.............96
Mean diurnal course with window size of 2 days: .
.............96
Mean diurnal course with window size of 7 days: .
............480
Mean diurnal course with window size of 14 days: .
.......672
Mean diurnal course with window size of 21 days: .
53
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 1676 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
................2
Mean diurnal course with window size of 1 days: .
................96
Mean diurnal course with window size of 2 days: .
...............96
Mean diurnal course with window size of 7 days: .
..............480
Mean diurnal course with window size of 14 days: .
..........672
Mean diurnal course with window size of 21 days: .
...330
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2008 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
....................2
Mean diurnal course with window size of 1 days: .
....................96
Mean diurnal course with window size of 2 days: .
...................96
Mean diurnal course with window size of 7 days: .
..................480
Mean diurnal course with window size of 14 days: .
.............672
Mean diurnal course with window size of 21 days: .
......662
Finished gap filling of 'SW_IN' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2405 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
........................2
Mean diurnal course with window size of 1 days: .
........................96
Mean diurnal course with window size of 2 days: .
.......................96
Mean diurnal course with window size of 7 days: .
......................480
Mean diurnal course with window size of 14 days: .
.................672
Mean diurnal course with window size of 21 days: .
..........672
Mean diurnal course with window size of 28 days: .
...387
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'SW_IN' with 2879 real gaps for gap filling.
Restriced MDS algorithm for gap filling of 'SW_IN.gap_0' with no meteo conditions and hence only MDC.
```

```
Warning in EProc$sMDSGapFill(var, QFVar = "gap", QFValue = 0, V1 = "SW_IN", :
sMDSGapFill::: No meteo available for MDS gap filling!
```

```
Mean diurnal course with window size of 0 days: .
............................2
Mean diurnal course with window size of 1 days: .
............................96
Mean diurnal course with window size of 2 days: .
...........................96
Mean diurnal course with window size of 7 days: .
..........................480
Mean diurnal course with window size of 14 days: .
......................672
Mean diurnal course with window size of 21 days: .
...............672
Mean diurnal course with window size of 28 days: .
........672
Mean diurnal course with window size of 35 days: .
.189
Finished gap filling of 'SW_IN' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
# A tibble: 30 × 5
   gap_length  mean    sd error_high error_low
        <int> <dbl> <dbl>      <dbl>     <dbl>
 1          1  17.5  33.4       50.9    -15.9 
 2          4  40.8  61.0      102.     -20.2 
 3          8  64.0  82.8      147.     -18.8 
 4         12  65.5  79.8      145.     -14.3 
 5         17  71.0  84.4      155.     -13.4 
 6         24  84.9  82.0      167.       2.89
 7         32  92.3  67.2      160.      25.0 
 8         41  83.6  59.8      143.      23.8 
 9         52  80.7  53.1      134.      27.6 
10         65  84.5  55.7      140.      28.8 
# … with 20 more rows
```

```r
SW_IN_rmse_stat %>%
  mutate(gap_length = gap_length / 2) %>%
  ggplot(aes(gap_length)) +
  geom_ribbon(aes(ymin = error_low, ymax = error_high), alpha = .7) +
  geom_line(aes(y=mean)) +
  labs(x = "Gap Lengths [hours]", y = "RMSE [W m-2]")
```

<img src="figure/MDS_gap_filling_quality.rmd/unnamed-chunk-14-1.png" width="672" style="display: block; margin: auto;" />

P

knit_template("analysis/fragments/variable_assess_gapfilling.rmd", var = "P", unit="mm")

```r
cache_rds({
  # go up to 60 days which is the maximium gap is going to be filled
    # 1.1 is needed because for some unknown reasons, when converting to interger 1 becomes 0 (maybe some floating point related issue)
    gaps_lengths <-  seq_log(1.1, 24 * 2 * 30 * 2 , offset = 15, length.out = 30) %>%
            rep(n_rep) %>%
            as.integer()

    P_rmse <- gaps_lengths %>%
            split_vector(n_workers) %>%
            future_map_dfr(~gap_fill_EProc_rmse(hai, "P", .x))

    P_rmse_stat <- P_rmse %>%
      group_by(gap_length) %>%
      summarise(mean = mean(rmse), sd = sd(rmse)) %>%
        mutate(error_high = mean + sd, error_low = mean - sd)
})
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'P' with 1 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
1
```

```
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'P' with 4 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
4
```

```
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'P' with 8 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
8
```

```
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'P' with 12 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
12
```

```
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'P' with 17 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
17
```

```
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'P' with 24 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
24
```

```
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'P' with 32 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
32
```

```
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'P' with 41 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
41
```

```
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'P' with 52 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
52
```

```
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'P' with 65 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
65
```

```
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'P' with 81 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
80
```

```
Look up table with window size of 14 days with SW_IN VPD Tair
```

```
1
```

```
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'P' with 100 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
.84
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..199
Look up table with window size of 14 days with SW_IN VPD Tair
20
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..243
Look up table with window size of 14 days with SW_IN VPD Tair
15
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...316
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...356
Look up table with window size of 14 days with SW_IN VPD Tair
17
Look up table with window size of 7 days with SW_IN
15
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....440
Look up table with window size of 14 days with SW_IN VPD Tair
21
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....509
Look up table with window size of 14 days with SW_IN VPD Tair
48
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......480
Look up table with window size of 14 days with SW_IN VPD Tair
.180
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
16
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........557
Look up table with window size of 14 days with SW_IN VPD Tair
..240
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........612
Look up table with window size of 14 days with SW_IN VPD Tair
...356
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........416
Look up table with window size of 14 days with SW_IN VPD Tair
.......595
Look up table with window size of 7 days with SW_IN
.9
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.144
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............404
Look up table with window size of 14 days with SW_IN VPD Tair
.........729
Look up table with window size of 7 days with SW_IN
..32
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..1
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..202
Look up table with window size of 28 days with SW_IN VPD Tair
18
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................515
Look up table with window size of 14 days with SW_IN VPD Tair
...........691
Look up table with window size of 7 days with SW_IN
....43
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....1
Mean diurnal course with window size of 2 days: .
....4
Look up table with window size of 21 days with SW_IN VPD Tair
....359
Look up table with window size of 28 days with SW_IN VPD Tair
10
Look up table with window size of 35 days with SW_IN VPD Tair
22
Look up table with window size of 42 days with SW_IN VPD Tair
21
Look up table with window size of 49 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................431
Look up table with window size of 14 days with SW_IN VPD Tair
...............504
Look up table with window size of 7 days with SW_IN
..........55
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........741
Look up table with window size of 28 days with SW_IN VPD Tair
..196
Look up table with window size of 35 days with SW_IN VPD Tair
20
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
8
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
24
Look up table with window size of 42 days with SW_IN
16
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................552
Look up table with window size of 14 days with SW_IN VPD Tair
..................654
Look up table with window size of 7 days with SW_IN
...........9
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........612
Look up table with window size of 28 days with SW_IN VPD Tair
.....488
Look up table with window size of 35 days with SW_IN VPD Tair
49
Look up table with window size of 42 days with SW_IN VPD Tair
38
Look up table with window size of 49 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................377
Look up table with window size of 14 days with SW_IN VPD Tair
.........................359
Look up table with window size of 7 days with SW_IN
.....................115
Mean diurnal course with window size of 0 days: .
....................0
Mean diurnal course with window size of 1 days: .
....................0
Mean diurnal course with window size of 2 days: .
....................0
Look up table with window size of 21 days with SW_IN VPD Tair
....................409
Look up table with window size of 28 days with SW_IN VPD Tair
................521
Look up table with window size of 35 days with SW_IN VPD Tair
..........432
Look up table with window size of 42 days with SW_IN VPD Tair
......384
Look up table with window size of 49 days with SW_IN VPD Tair
..122
Look up table with window size of 56 days with SW_IN VPD Tair
.108
Look up table with window size of 63 days with SW_IN VPD Tair
25
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
20
Finished gap filling of 'P' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
11
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
55
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.103
Look up table with window size of 14 days with SW_IN VPD Tair
19
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.140
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.152
Look up table with window size of 14 days with SW_IN VPD Tair
30
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...387
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....376
Look up table with window size of 14 days with SW_IN VPD Tair
92
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....404
Look up table with window size of 14 days with SW_IN VPD Tair
.157
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......516
Look up table with window size of 14 days with SW_IN VPD Tair
.134
Look up table with window size of 7 days with SW_IN
24
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........377
Look up table with window size of 14 days with SW_IN VPD Tair
....280
Look up table with window size of 7 days with SW_IN
.59
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
90
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........512
Look up table with window size of 14 days with SW_IN VPD Tair
....396
Look up table with window size of 7 days with SW_IN
31
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
18
Look up table with window size of 28 days with SW_IN VPD Tair
6
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........398
Look up table with window size of 14 days with SW_IN VPD Tair
.......533
Look up table with window size of 7 days with SW_IN
..20
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..200
Look up table with window size of 28 days with SW_IN VPD Tair
8
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............376
Look up table with window size of 14 days with SW_IN VPD Tair
..........585
Look up table with window size of 7 days with SW_IN
....88
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...315
Look up table with window size of 28 days with SW_IN VPD Tair
28
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................522
Look up table with window size of 14 days with SW_IN VPD Tair
...........401
Look up table with window size of 7 days with SW_IN
.......4
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......634
Look up table with window size of 28 days with SW_IN VPD Tair
.114
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................600
Look up table with window size of 14 days with SW_IN VPD Tair
..............390
Look up table with window size of 7 days with SW_IN
..........4
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........660
Look up table with window size of 28 days with SW_IN VPD Tair
...340
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................459
Look up table with window size of 14 days with SW_IN VPD Tair
...................839
Look up table with window size of 7 days with SW_IN
...........2
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........433
Look up table with window size of 28 days with SW_IN VPD Tair
......405
Look up table with window size of 35 days with SW_IN VPD Tair
..248
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
8
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................482
Look up table with window size of 14 days with SW_IN VPD Tair
.......................451
Look up table with window size of 7 days with SW_IN
...................37
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................8
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................487
Look up table with window size of 28 days with SW_IN VPD Tair
..............504
Look up table with window size of 35 days with SW_IN VPD Tair
.........413
Look up table with window size of 42 days with SW_IN VPD Tair
....109
Look up table with window size of 49 days with SW_IN VPD Tair
...48
Look up table with window size of 56 days with SW_IN VPD Tair
...88
Look up table with window size of 63 days with SW_IN VPD Tair
..15
Look up table with window size of 70 days with SW_IN VPD Tair
..3
Look up table with window size of 14 days with SW_IN
..55
Look up table with window size of 21 days with SW_IN
.102
Look up table with window size of 28 days with SW_IN
54
Look up table with window size of 35 days with SW_IN
17
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
1
Mean diurnal course with window size of 28 days: .
4
Finished gap filling of 'P' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
23
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
74
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.87
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.148
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..198
Look up table with window size of 14 days with SW_IN VPD Tair
17
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..261
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...363
Look up table with window size of 14 days with SW_IN VPD Tair
22
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....318
Look up table with window size of 14 days with SW_IN VPD Tair
.149
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....498
Look up table with window size of 14 days with SW_IN VPD Tair
61
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......454
Look up table with window size of 14 days with SW_IN VPD Tair
..183
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Mean diurnal course with window size of 2 days: .
10
Look up table with window size of 21 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........464
Look up table with window size of 14 days with SW_IN VPD Tair
...281
Look up table with window size of 7 days with SW_IN
50
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........551
Look up table with window size of 14 days with SW_IN VPD Tair
....396
Look up table with window size of 7 days with SW_IN
13
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........370
Look up table with window size of 14 days with SW_IN VPD Tair
.......411
Look up table with window size of 7 days with SW_IN
...213
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.128
Look up table with window size of 28 days with SW_IN VPD Tair
36
Look up table with window size of 35 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............516
Look up table with window size of 14 days with SW_IN VPD Tair
........539
Look up table with window size of 7 days with SW_IN
...10
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...328
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................577
Look up table with window size of 14 days with SW_IN VPD Tair
..........717
Look up table with window size of 7 days with SW_IN
...0
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...358
Look up table with window size of 28 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................504
Look up table with window size of 14 days with SW_IN VPD Tair
...............527
Look up table with window size of 7 days with SW_IN
.........147
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........530
Look up table with window size of 28 days with SW_IN VPD Tair
...179
Look up table with window size of 35 days with SW_IN VPD Tair
.38
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
83
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................548
Look up table with window size of 14 days with SW_IN VPD Tair
..................693
Look up table with window size of 7 days with SW_IN
...........21
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........580
Look up table with window size of 28 days with SW_IN VPD Tair
.....426
Look up table with window size of 35 days with SW_IN VPD Tair
.106
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
7
Look up table with window size of 35 days with SW_IN
8
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................450
Look up table with window size of 14 days with SW_IN VPD Tair
........................483
Look up table with window size of 7 days with SW_IN
...................40
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................730
Look up table with window size of 28 days with SW_IN VPD Tair
...........628
Look up table with window size of 35 days with SW_IN VPD Tair
.....440
Look up table with window size of 42 days with SW_IN VPD Tair
.103
Look up table with window size of 49 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
23
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
38
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.94
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.142
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...388
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....427
Look up table with window size of 14 days with SW_IN VPD Tair
18
Look up table with window size of 7 days with SW_IN
18
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....454
Look up table with window size of 14 days with SW_IN VPD Tair
.90
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......410
Look up table with window size of 14 days with SW_IN VPD Tair
..258
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........362
Look up table with window size of 14 days with SW_IN VPD Tair
....399
Look up table with window size of 7 days with SW_IN
28
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 21 days with SW_IN VPD Tair
10
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........353
Look up table with window size of 14 days with SW_IN VPD Tair
......508
Look up table with window size of 7 days with SW_IN
.75
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
36
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........430
Look up table with window size of 14 days with SW_IN VPD Tair
.......426
Look up table with window size of 7 days with SW_IN
...122
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.2
Look up table with window size of 21 days with SW_IN VPD Tair
.104
Look up table with window size of 28 days with SW_IN VPD Tair
79
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............422
Look up table with window size of 14 days with SW_IN VPD Tair
.........726
Look up table with window size of 7 days with SW_IN
..1
Mean diurnal course with window size of 0 days: .
..1
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..1
Look up table with window size of 21 days with SW_IN VPD Tair
..224
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................379
Look up table with window size of 14 days with SW_IN VPD Tair
............513
Look up table with window size of 7 days with SW_IN
.......130
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......341
Look up table with window size of 28 days with SW_IN VPD Tair
...230
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
78
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................428
Look up table with window size of 14 days with SW_IN VPD Tair
...............625
Look up table with window size of 7 days with SW_IN
.........18
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........664
Look up table with window size of 28 days with SW_IN VPD Tair
..227
Look up table with window size of 35 days with SW_IN VPD Tair
20
Look up table with window size of 42 days with SW_IN VPD Tair
20
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................479
Look up table with window size of 14 days with SW_IN VPD Tair
...................385
Look up table with window size of 7 days with SW_IN
...............154
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............561
Look up table with window size of 28 days with SW_IN VPD Tair
........640
Look up table with window size of 35 days with SW_IN VPD Tair
.134
Look up table with window size of 42 days with SW_IN VPD Tair
36
Look up table with window size of 49 days with SW_IN VPD Tair
12
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................503
Look up table with window size of 14 days with SW_IN VPD Tair
.......................714
Look up table with window size of 7 days with SW_IN
................18
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................552
Look up table with window size of 28 days with SW_IN VPD Tair
..........573
Look up table with window size of 35 days with SW_IN VPD Tair
.....398
Look up table with window size of 42 days with SW_IN VPD Tair
.76
Look up table with window size of 49 days with SW_IN VPD Tair
10
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
15
Look up table with window size of 49 days with SW_IN
8
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.85
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.142
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.175
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...224
Look up table with window size of 14 days with SW_IN VPD Tair
35
Look up table with window size of 7 days with SW_IN
62
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...359
Look up table with window size of 14 days with SW_IN VPD Tair
27
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....452
Look up table with window size of 14 days with SW_IN VPD Tair
16
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....413
Look up table with window size of 14 days with SW_IN VPD Tair
.149
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......479
Look up table with window size of 14 days with SW_IN VPD Tair
.153
Look up table with window size of 7 days with SW_IN
44
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........543
Look up table with window size of 14 days with SW_IN VPD Tair
..268
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........595
Look up table with window size of 14 days with SW_IN VPD Tair
...334
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
32
Look up table with window size of 35 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........408
Look up table with window size of 14 days with SW_IN VPD Tair
.......624
Look up table with window size of 7 days with SW_IN
.18
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.107
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............525
Look up table with window size of 14 days with SW_IN VPD Tair
........701
Look up table with window size of 7 days with SW_IN
.6
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.153
Look up table with window size of 28 days with SW_IN VPD Tair
12
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................462
Look up table with window size of 14 days with SW_IN VPD Tair
............726
Look up table with window size of 7 days with SW_IN
....0
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....420
Look up table with window size of 28 days with SW_IN VPD Tair
20
Look up table with window size of 35 days with SW_IN VPD Tair
20
Look up table with window size of 42 days with SW_IN VPD Tair
28
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................408
Look up table with window size of 14 days with SW_IN VPD Tair
................677
Look up table with window size of 7 days with SW_IN
.........80
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........1
Look up table with window size of 21 days with SW_IN VPD Tair
........524
Look up table with window size of 28 days with SW_IN VPD Tair
...140
Look up table with window size of 35 days with SW_IN VPD Tair
.118
Look up table with window size of 42 days with SW_IN VPD Tair
46
Look up table with window size of 49 days with SW_IN VPD Tair
14
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................471
Look up table with window size of 14 days with SW_IN VPD Tair
...................477
Look up table with window size of 7 days with SW_IN
..............35
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............478
Look up table with window size of 28 days with SW_IN VPD Tair
.........524
Look up table with window size of 35 days with SW_IN VPD Tair
....200
Look up table with window size of 42 days with SW_IN VPD Tair
..70
Look up table with window size of 49 days with SW_IN VPD Tair
.84
Look up table with window size of 56 days with SW_IN VPD Tair
14
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
13
Look up table with window size of 21 days with SW_IN
17
Look up table with window size of 28 days with SW_IN
15
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................399
Look up table with window size of 14 days with SW_IN VPD Tair
........................713
Look up table with window size of 7 days with SW_IN
.................23
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................600
Look up table with window size of 28 days with SW_IN VPD Tair
...........792
Look up table with window size of 35 days with SW_IN VPD Tair
...268
Look up table with window size of 42 days with SW_IN VPD Tair
36
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
7
Look up table with window size of 49 days with SW_IN
18
Look up table with window size of 56 days with SW_IN
2
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...262
Look up table with window size of 14 days with SW_IN VPD Tair
42
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...328
Look up table with window size of 14 days with SW_IN VPD Tair
29
Look up table with window size of 7 days with SW_IN
31
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....366
Look up table with window size of 14 days with SW_IN VPD Tair
.95
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....469
Look up table with window size of 14 days with SW_IN VPD Tair
87
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......454
Look up table with window size of 14 days with SW_IN VPD Tair
..201
Look up table with window size of 7 days with SW_IN
16
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........435
Look up table with window size of 14 days with SW_IN VPD Tair
...267
Look up table with window size of 7 days with SW_IN
.99
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........468
Look up table with window size of 14 days with SW_IN VPD Tair
.....239
Look up table with window size of 7 days with SW_IN
..114
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.141
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........429
Look up table with window size of 14 days with SW_IN VPD Tair
.......668
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
61
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............371
Look up table with window size of 14 days with SW_IN VPD Tair
..........389
Look up table with window size of 7 days with SW_IN
......250
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...6
Look up table with window size of 21 days with SW_IN VPD Tair
...299
Look up table with window size of 28 days with SW_IN VPD Tair
79
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................423
Look up table with window size of 14 days with SW_IN VPD Tair
............678
Look up table with window size of 7 days with SW_IN
.....199
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...302
Look up table with window size of 28 days with SW_IN VPD Tair
50
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
18
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................529
Look up table with window size of 14 days with SW_IN VPD Tair
..............561
Look up table with window size of 7 days with SW_IN
.........53
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........5
Mean diurnal course with window size of 2 days: .
........6
Look up table with window size of 21 days with SW_IN VPD Tair
........635
Look up table with window size of 28 days with SW_IN VPD Tair
..125
Look up table with window size of 35 days with SW_IN VPD Tair
55
Look up table with window size of 42 days with SW_IN VPD Tair
27
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................526
Look up table with window size of 14 days with SW_IN VPD Tair
..................579
Look up table with window size of 7 days with SW_IN
.............51
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............610
Look up table with window size of 28 days with SW_IN VPD Tair
......460
Look up table with window size of 35 days with SW_IN VPD Tair
.87
Look up table with window size of 42 days with SW_IN VPD Tair
36
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
6
Look up table with window size of 63 days with SW_IN VPD Tair
7
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
10
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................543
Look up table with window size of 14 days with SW_IN VPD Tair
.......................614
Look up table with window size of 7 days with SW_IN
.................43
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................1
Look up table with window size of 21 days with SW_IN VPD Tair
................639
Look up table with window size of 28 days with SW_IN VPD Tair
..........381
Look up table with window size of 35 days with SW_IN VPD Tair
......301
Look up table with window size of 42 days with SW_IN VPD Tair
...171
Look up table with window size of 49 days with SW_IN VPD Tair
.38
Look up table with window size of 56 days with SW_IN VPD Tair
.5
Look up table with window size of 63 days with SW_IN VPD Tair
.3
Look up table with window size of 70 days with SW_IN VPD Tair
.1
Look up table with window size of 14 days with SW_IN
.3
Look up table with window size of 21 days with SW_IN
.8
Look up table with window size of 28 days with SW_IN
.72
Look up table with window size of 35 days with SW_IN
56
Finished gap filling of 'P' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
21
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.92
Look up table with window size of 14 days with SW_IN VPD Tair
79
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..107
Look up table with window size of 14 days with SW_IN VPD Tair
.17
Look up table with window size of 7 days with SW_IN
97
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...378
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....279
Look up table with window size of 14 days with SW_IN VPD Tair
.151
Look up table with window size of 7 days with SW_IN
32
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....526
Look up table with window size of 14 days with SW_IN VPD Tair
27
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......399
Look up table with window size of 14 days with SW_IN VPD Tair
..269
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........504
Look up table with window size of 14 days with SW_IN VPD Tair
...284
Look up table with window size of 7 days with SW_IN
16
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........418
Look up table with window size of 14 days with SW_IN VPD Tair
.....433
Look up table with window size of 7 days with SW_IN
.54
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
57
Look up table with window size of 28 days with SW_IN VPD Tair
10
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........462
Look up table with window size of 14 days with SW_IN VPD Tair
.......613
Look up table with window size of 7 days with SW_IN
13
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
51
Look up table with window size of 28 days with SW_IN VPD Tair
19
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............564
Look up table with window size of 14 days with SW_IN VPD Tair
........521
Look up table with window size of 7 days with SW_IN
...5
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...298
Look up table with window size of 28 days with SW_IN VPD Tair
10
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................435
Look up table with window size of 14 days with SW_IN VPD Tair
............624
Look up table with window size of 7 days with SW_IN
......71
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....393
Look up table with window size of 28 days with SW_IN VPD Tair
.74
Look up table with window size of 35 days with SW_IN VPD Tair
58
Look up table with window size of 42 days with SW_IN VPD Tair
18
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................581
Look up table with window size of 14 days with SW_IN VPD Tair
..............577
Look up table with window size of 7 days with SW_IN
........0
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........683
Look up table with window size of 28 days with SW_IN VPD Tair
.146
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................439
Look up table with window size of 14 days with SW_IN VPD Tair
...................511
Look up table with window size of 7 days with SW_IN
..............59
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............639
Look up table with window size of 28 days with SW_IN VPD Tair
.......580
Look up table with window size of 35 days with SW_IN VPD Tair
.95
Look up table with window size of 42 days with SW_IN VPD Tair
62
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................218
Look up table with window size of 14 days with SW_IN VPD Tair
..........................491
Look up table with window size of 7 days with SW_IN
.....................287
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................517
Look up table with window size of 28 days with SW_IN VPD Tair
.............702
Look up table with window size of 35 days with SW_IN VPD Tair
......323
Look up table with window size of 42 days with SW_IN VPD Tair
...104
Look up table with window size of 49 days with SW_IN VPD Tair
..18
Look up table with window size of 56 days with SW_IN VPD Tair
..142
Look up table with window size of 63 days with SW_IN VPD Tair
15
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
34
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
10
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
7
Look up table with window size of 56 days with SW_IN
5
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
77
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.156
Look up table with window size of 14 days with SW_IN VPD Tair
26
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..211
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..265
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...282
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
40
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...308
Look up table with window size of 14 days with SW_IN VPD Tair
80
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....411
Look up table with window size of 14 days with SW_IN VPD Tair
53
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....474
Look up table with window size of 14 days with SW_IN VPD Tair
75
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......598
Look up table with window size of 14 days with SW_IN VPD Tair
76
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........513
Look up table with window size of 14 days with SW_IN VPD Tair
..249
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
39
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........480
Look up table with window size of 14 days with SW_IN VPD Tair
....430
Look up table with window size of 7 days with SW_IN
35
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
10
Look up table with window size of 28 days with SW_IN VPD Tair
18
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........570
Look up table with window size of 14 days with SW_IN VPD Tair
.....541
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
54
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............459
Look up table with window size of 14 days with SW_IN VPD Tair
.........600
Look up table with window size of 7 days with SW_IN
...16
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...267
Look up table with window size of 28 days with SW_IN VPD Tair
15
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
35
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................497
Look up table with window size of 14 days with SW_IN VPD Tair
...........649
Look up table with window size of 7 days with SW_IN
.....15
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....1
Look up table with window size of 21 days with SW_IN VPD Tair
.....451
Look up table with window size of 28 days with SW_IN VPD Tair
39
Look up table with window size of 35 days with SW_IN VPD Tair
17
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................448
Look up table with window size of 14 days with SW_IN VPD Tair
...............553
Look up table with window size of 7 days with SW_IN
..........42
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........1
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........660
Look up table with window size of 28 days with SW_IN VPD Tair
...239
Look up table with window size of 35 days with SW_IN VPD Tair
33
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
16
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................332
Look up table with window size of 14 days with SW_IN VPD Tair
....................643
Look up table with window size of 7 days with SW_IN
..............40
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............2
Look up table with window size of 21 days with SW_IN VPD Tair
.............560
Look up table with window size of 28 days with SW_IN VPD Tair
........640
Look up table with window size of 35 days with SW_IN VPD Tair
.122
Look up table with window size of 42 days with SW_IN VPD Tair
15
Look up table with window size of 49 days with SW_IN VPD Tair
12
Look up table with window size of 56 days with SW_IN VPD Tair
16
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
9
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
10
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................595
Look up table with window size of 14 days with SW_IN VPD Tair
......................522
Look up table with window size of 7 days with SW_IN
.................7
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................713
Look up table with window size of 28 days with SW_IN VPD Tair
..........538
Look up table with window size of 35 days with SW_IN VPD Tair
.....345
Look up table with window size of 42 days with SW_IN VPD Tair
.103
Look up table with window size of 49 days with SW_IN VPD Tair
8
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
20
Look up table with window size of 35 days with SW_IN
27
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
30
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...294
Look up table with window size of 14 days with SW_IN VPD Tair
26
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...384
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....396
Look up table with window size of 14 days with SW_IN VPD Tair
32
Look up table with window size of 7 days with SW_IN
40
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....470
Look up table with window size of 14 days with SW_IN VPD Tair
62
Look up table with window size of 7 days with SW_IN
25
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......367
Look up table with window size of 14 days with SW_IN VPD Tair
...168
Look up table with window size of 7 days with SW_IN
.119
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
14
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........554
Look up table with window size of 14 days with SW_IN VPD Tair
..161
Look up table with window size of 7 days with SW_IN
22
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
11
Look up table with window size of 28 days with SW_IN VPD Tair
20
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
20
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........495
Look up table with window size of 14 days with SW_IN VPD Tair
....160
Look up table with window size of 7 days with SW_IN
...153
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.4
Look up table with window size of 21 days with SW_IN VPD Tair
.107
Look up table with window size of 28 days with SW_IN VPD Tair
32
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
21
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........424
Look up table with window size of 14 days with SW_IN VPD Tair
.......673
Look up table with window size of 7 days with SW_IN
53
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
15
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............472
Look up table with window size of 14 days with SW_IN VPD Tair
.........449
Look up table with window size of 7 days with SW_IN
....87
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...302
Look up table with window size of 28 days with SW_IN VPD Tair
72
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................461
Look up table with window size of 14 days with SW_IN VPD Tair
............637
Look up table with window size of 7 days with SW_IN
.....0
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....522
Look up table with window size of 28 days with SW_IN VPD Tair
32
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
12
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................556
Look up table with window size of 14 days with SW_IN VPD Tair
..............479
Look up table with window size of 7 days with SW_IN
.........11
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........724
Look up table with window size of 28 days with SW_IN VPD Tair
..131
Look up table with window size of 35 days with SW_IN VPD Tair
.33
Look up table with window size of 42 days with SW_IN VPD Tair
52
Look up table with window size of 49 days with SW_IN VPD Tair
16
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................500
Look up table with window size of 14 days with SW_IN VPD Tair
...................760
Look up table with window size of 7 days with SW_IN
...........38
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........567
Look up table with window size of 28 days with SW_IN VPD Tair
.....381
Look up table with window size of 35 days with SW_IN VPD Tair
.142
Look up table with window size of 42 days with SW_IN VPD Tair
12
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................512
Look up table with window size of 14 days with SW_IN VPD Tair
.......................532
Look up table with window size of 7 days with SW_IN
..................31
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................525
Look up table with window size of 28 days with SW_IN VPD Tair
............682
Look up table with window size of 35 days with SW_IN VPD Tair
.....355
Look up table with window size of 42 days with SW_IN VPD Tair
..119
Look up table with window size of 49 days with SW_IN VPD Tair
.60
Look up table with window size of 56 days with SW_IN VPD Tair
20
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
19
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
5
Look up table with window size of 42 days with SW_IN
7
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.120
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.144
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.158
Look up table with window size of 14 days with SW_IN VPD Tair
22
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..191
Look up table with window size of 14 days with SW_IN VPD Tair
76
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...297
Look up table with window size of 14 days with SW_IN VPD Tair
25
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...384
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....424
Look up table with window size of 14 days with SW_IN VPD Tair
42
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....287
Look up table with window size of 14 days with SW_IN VPD Tair
..268
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......421
Look up table with window size of 14 days with SW_IN VPD Tair
..162
Look up table with window size of 7 days with SW_IN
88
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........448
Look up table with window size of 14 days with SW_IN VPD Tair
...362
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........356
Look up table with window size of 14 days with SW_IN VPD Tair
......361
Look up table with window size of 7 days with SW_IN
..186
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
44
Look up table with window size of 28 days with SW_IN VPD Tair
10
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........414
Look up table with window size of 14 days with SW_IN VPD Tair
.......535
Look up table with window size of 7 days with SW_IN
..9
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..1
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..174
Look up table with window size of 28 days with SW_IN VPD Tair
32
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............523
Look up table with window size of 14 days with SW_IN VPD Tair
........692
Look up table with window size of 7 days with SW_IN
.22
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.143
Look up table with window size of 28 days with SW_IN VPD Tair
17
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................504
Look up table with window size of 14 days with SW_IN VPD Tair
...........642
Look up table with window size of 7 days with SW_IN
.....9
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....416
Look up table with window size of 28 days with SW_IN VPD Tair
.94
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................566
Look up table with window size of 14 days with SW_IN VPD Tair
..............426
Look up table with window size of 7 days with SW_IN
..........7
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........542
Look up table with window size of 28 days with SW_IN VPD Tair
....209
Look up table with window size of 35 days with SW_IN VPD Tair
..77
Look up table with window size of 42 days with SW_IN VPD Tair
.108
Look up table with window size of 49 days with SW_IN VPD Tair
52
Look up table with window size of 56 days with SW_IN VPD Tair
17
Look up table with window size of 63 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................396
Look up table with window size of 14 days with SW_IN VPD Tair
....................705
Look up table with window size of 7 days with SW_IN
.............78
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............3
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............452
Look up table with window size of 28 days with SW_IN VPD Tair
.......364
Look up table with window size of 35 days with SW_IN VPD Tair
....242
Look up table with window size of 42 days with SW_IN VPD Tair
.59
Look up table with window size of 49 days with SW_IN VPD Tair
.36
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
8
Look up table with window size of 35 days with SW_IN
38
Look up table with window size of 42 days with SW_IN
11
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................431
Look up table with window size of 14 days with SW_IN VPD Tair
........................555
Look up table with window size of 7 days with SW_IN
..................141
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................522
Look up table with window size of 28 days with SW_IN VPD Tair
............531
Look up table with window size of 35 days with SW_IN VPD Tair
......372
Look up table with window size of 42 days with SW_IN VPD Tair
...262
Look up table with window size of 49 days with SW_IN VPD Tair
35
Look up table with window size of 56 days with SW_IN VPD Tair
23
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..210
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..225
Look up table with window size of 14 days with SW_IN VPD Tair
42
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...310
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...373
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....398
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
39
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....449
Look up table with window size of 14 days with SW_IN VPD Tair
.112
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......549
Look up table with window size of 14 days with SW_IN VPD Tair
.116
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........413
Look up table with window size of 14 days with SW_IN VPD Tair
...152
Look up table with window size of 7 days with SW_IN
..124
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.8
Look up table with window size of 21 days with SW_IN VPD Tair
.109
Look up table with window size of 28 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........445
Look up table with window size of 14 days with SW_IN VPD Tair
.....445
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
71
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........393
Look up table with window size of 14 days with SW_IN VPD Tair
.......629
Look up table with window size of 7 days with SW_IN
.13
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.111
Look up table with window size of 28 days with SW_IN VPD Tair
20
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............506
Look up table with window size of 14 days with SW_IN VPD Tair
........705
Look up table with window size of 7 days with SW_IN
.2
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.158
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
26
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................339
Look up table with window size of 14 days with SW_IN VPD Tair
.............411
Look up table with window size of 7 days with SW_IN
.........261
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......419
Look up table with window size of 28 days with SW_IN VPD Tair
..229
Look up table with window size of 35 days with SW_IN VPD Tair
14
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................441
Look up table with window size of 14 days with SW_IN VPD Tair
...............630
Look up table with window size of 7 days with SW_IN
.........37
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........657
Look up table with window size of 28 days with SW_IN VPD Tair
..228
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................420
Look up table with window size of 14 days with SW_IN VPD Tair
...................749
Look up table with window size of 7 days with SW_IN
............37
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........657
Look up table with window size of 28 days with SW_IN VPD Tair
.....440
Look up table with window size of 35 days with SW_IN VPD Tair
.52
Look up table with window size of 42 days with SW_IN VPD Tair
26
Look up table with window size of 49 days with SW_IN VPD Tair
13
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................483
Look up table with window size of 14 days with SW_IN VPD Tair
.......................456
Look up table with window size of 7 days with SW_IN
...................13
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................820
Look up table with window size of 28 days with SW_IN VPD Tair
...........631
Look up table with window size of 35 days with SW_IN VPD Tair
....242
Look up table with window size of 42 days with SW_IN VPD Tair
..102
Look up table with window size of 49 days with SW_IN VPD Tair
.56
Look up table with window size of 56 days with SW_IN VPD Tair
28
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
12
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
10
Look up table with window size of 35 days with SW_IN
7
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
7
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
39
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
59
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.176
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...313
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...321
Look up table with window size of 14 days with SW_IN VPD Tair
66
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....457
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....390
Look up table with window size of 14 days with SW_IN VPD Tair
.166
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......521
Look up table with window size of 14 days with SW_IN VPD Tair
.131
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........386
Look up table with window size of 14 days with SW_IN VPD Tair
....389
Look up table with window size of 7 days with SW_IN
23
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
11
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........423
Look up table with window size of 14 days with SW_IN VPD Tair
.....426
Look up table with window size of 7 days with SW_IN
.62
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
7
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
36
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
17
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........513
Look up table with window size of 14 days with SW_IN VPD Tair
......503
Look up table with window size of 7 days with SW_IN
.14
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.137
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............438
Look up table with window size of 14 days with SW_IN VPD Tair
.........288
Look up table with window size of 7 days with SW_IN
......201
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....318
Look up table with window size of 28 days with SW_IN VPD Tair
.61
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
45
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
46
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................459
Look up table with window size of 14 days with SW_IN VPD Tair
............675
Look up table with window size of 7 days with SW_IN
.....10
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....395
Look up table with window size of 28 days with SW_IN VPD Tair
.33
Look up table with window size of 35 days with SW_IN VPD Tair
.8
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
66
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
20
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................397
Look up table with window size of 14 days with SW_IN VPD Tair
................491
Look up table with window size of 7 days with SW_IN
...........148
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........348
Look up table with window size of 28 days with SW_IN VPD Tair
......328
Look up table with window size of 35 days with SW_IN VPD Tair
..184
Look up table with window size of 42 days with SW_IN VPD Tair
.86
Look up table with window size of 49 days with SW_IN VPD Tair
19
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................555
Look up table with window size of 14 days with SW_IN VPD Tair
..................480
Look up table with window size of 7 days with SW_IN
.............25
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............467
Look up table with window size of 28 days with SW_IN VPD Tair
........599
Look up table with window size of 35 days with SW_IN VPD Tair
..111
Look up table with window size of 42 days with SW_IN VPD Tair
.114
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
43
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
5
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
2
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................441
Look up table with window size of 14 days with SW_IN VPD Tair
........................795
Look up table with window size of 7 days with SW_IN
................2
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................442
Look up table with window size of 28 days with SW_IN VPD Tair
...........545
Look up table with window size of 35 days with SW_IN VPD Tair
......537
Look up table with window size of 42 days with SW_IN VPD Tair
.12
Look up table with window size of 49 days with SW_IN VPD Tair
.67
Look up table with window size of 56 days with SW_IN VPD Tair
22
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
11
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
27
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..257
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...291
Look up table with window size of 14 days with SW_IN VPD Tair
24
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...250
Look up table with window size of 14 days with SW_IN VPD Tair
.16
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....384
Look up table with window size of 14 days with SW_IN VPD Tair
82
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....333
Look up table with window size of 14 days with SW_IN VPD Tair
..204
Look up table with window size of 7 days with SW_IN
24
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......482
Look up table with window size of 14 days with SW_IN VPD Tair
.165
Look up table with window size of 7 days with SW_IN
16
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
6
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........548
Look up table with window size of 14 days with SW_IN VPD Tair
..198
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........377
Look up table with window size of 14 days with SW_IN VPD Tair
.....395
Look up table with window size of 7 days with SW_IN
..81
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.85
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
16
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........509
Look up table with window size of 14 days with SW_IN VPD Tair
......533
Look up table with window size of 7 days with SW_IN
.39
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 21 days with SW_IN VPD Tair
70
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............358
Look up table with window size of 14 days with SW_IN VPD Tair
..........384
Look up table with window size of 7 days with SW_IN
......205
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....1
Look up table with window size of 21 days with SW_IN VPD Tair
....316
Look up table with window size of 28 days with SW_IN VPD Tair
.126
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................397
Look up table with window size of 14 days with SW_IN VPD Tair
............550
Look up table with window size of 7 days with SW_IN
.......99
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......415
Look up table with window size of 28 days with SW_IN VPD Tair
..172
Look up table with window size of 35 days with SW_IN VPD Tair
22
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................528
Look up table with window size of 14 days with SW_IN VPD Tair
..............567
Look up table with window size of 7 days with SW_IN
.........16
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........622
Look up table with window size of 28 days with SW_IN VPD Tair
..235
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
27
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
6
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................454
Look up table with window size of 14 days with SW_IN VPD Tair
...................604
Look up table with window size of 7 days with SW_IN
.............7
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............648
Look up table with window size of 28 days with SW_IN VPD Tair
......633
Look up table with window size of 35 days with SW_IN VPD Tair
52
Look up table with window size of 42 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................520
Look up table with window size of 14 days with SW_IN VPD Tair
.......................585
Look up table with window size of 7 days with SW_IN
.................7
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................821
Look up table with window size of 28 days with SW_IN VPD Tair
.........681
Look up table with window size of 35 days with SW_IN VPD Tair
..252
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
21
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
50
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.174
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..215
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...292
Look up table with window size of 14 days with SW_IN VPD Tair
30
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...366
Look up table with window size of 14 days with SW_IN VPD Tair
21
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....420
Look up table with window size of 14 days with SW_IN VPD Tair
30
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....358
Look up table with window size of 14 days with SW_IN VPD Tair
..160
Look up table with window size of 7 days with SW_IN
31
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......472
Look up table with window size of 14 days with SW_IN VPD Tair
..204
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........429
Look up table with window size of 14 days with SW_IN VPD Tair
...272
Look up table with window size of 7 days with SW_IN
.59
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
37
Look up table with window size of 28 days with SW_IN VPD Tair
14
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........477
Look up table with window size of 14 days with SW_IN VPD Tair
....324
Look up table with window size of 7 days with SW_IN
.93
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
63
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........551
Look up table with window size of 14 days with SW_IN VPD Tair
......542
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
68
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............466
Look up table with window size of 14 days with SW_IN VPD Tair
.........609
Look up table with window size of 7 days with SW_IN
...2
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...265
Look up table with window size of 28 days with SW_IN VPD Tair
28
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................586
Look up table with window size of 14 days with SW_IN VPD Tair
..........607
Look up table with window size of 7 days with SW_IN
....0
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....464
Look up table with window size of 28 days with SW_IN VPD Tair
15
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................461
Look up table with window size of 14 days with SW_IN VPD Tair
...............595
Look up table with window size of 7 days with SW_IN
.........35
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........621
Look up table with window size of 28 days with SW_IN VPD Tair
..235
Look up table with window size of 35 days with SW_IN VPD Tair
14
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
37
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................345
Look up table with window size of 14 days with SW_IN VPD Tair
....................714
Look up table with window size of 7 days with SW_IN
.............132
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............694
Look up table with window size of 28 days with SW_IN VPD Tair
.....511
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................568
Look up table with window size of 14 days with SW_IN VPD Tair
.......................717
Look up table with window size of 7 days with SW_IN
...............2
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............0
Mean diurnal course with window size of 2 days: .
...............0
Look up table with window size of 21 days with SW_IN VPD Tair
...............652
Look up table with window size of 28 days with SW_IN VPD Tair
.........606
Look up table with window size of 35 days with SW_IN VPD Tair
...329
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
62
Look up table with window size of 14 days with SW_IN VPD Tair
19
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.140
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.165
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..211
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...321
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...386
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....376
Look up table with window size of 14 days with SW_IN VPD Tair
82
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....453
Look up table with window size of 14 days with SW_IN VPD Tair
.84
Look up table with window size of 7 days with SW_IN
20
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......535
Look up table with window size of 14 days with SW_IN VPD Tair
.141
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........560
Look up table with window size of 14 days with SW_IN VPD Tair
..212
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 21 days with SW_IN VPD Tair
21
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........538
Look up table with window size of 14 days with SW_IN VPD Tair
....337
Look up table with window size of 7 days with SW_IN
80
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........499
Look up table with window size of 14 days with SW_IN VPD Tair
......489
Look up table with window size of 7 days with SW_IN
.84
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 21 days with SW_IN VPD Tair
68
Look up table with window size of 28 days with SW_IN VPD Tair
13
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............338
Look up table with window size of 14 days with SW_IN VPD Tair
..........439
Look up table with window size of 7 days with SW_IN
......97
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....447
Look up table with window size of 28 days with SW_IN VPD Tair
57
Look up table with window size of 35 days with SW_IN VPD Tair
16
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................550
Look up table with window size of 14 days with SW_IN VPD Tair
...........665
Look up table with window size of 7 days with SW_IN
....3
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....8
Mean diurnal course with window size of 2 days: .
....9
Look up table with window size of 21 days with SW_IN VPD Tair
....396
Look up table with window size of 28 days with SW_IN VPD Tair
13
Look up table with window size of 35 days with SW_IN VPD Tair
15
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
14
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................478
Look up table with window size of 14 days with SW_IN VPD Tair
...............470
Look up table with window size of 7 days with SW_IN
..........34
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........8
Mean diurnal course with window size of 2 days: .
..........8
Look up table with window size of 21 days with SW_IN VPD Tair
..........700
Look up table with window size of 28 days with SW_IN VPD Tair
...105
Look up table with window size of 35 days with SW_IN VPD Tair
..117
Look up table with window size of 42 days with SW_IN VPD Tair
45
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
9
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
5
Look up table with window size of 42 days with SW_IN
14
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................392
Look up table with window size of 14 days with SW_IN VPD Tair
....................534
Look up table with window size of 7 days with SW_IN
..............107
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............763
Look up table with window size of 28 days with SW_IN VPD Tair
......507
Look up table with window size of 35 days with SW_IN VPD Tair
.24
Look up table with window size of 42 days with SW_IN VPD Tair
31
Look up table with window size of 49 days with SW_IN VPD Tair
23
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
7
Look up table with window size of 35 days with SW_IN
7
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................455
Look up table with window size of 14 days with SW_IN VPD Tair
........................349
Look up table with window size of 7 days with SW_IN
....................178
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................679
Look up table with window size of 28 days with SW_IN VPD Tair
............905
Look up table with window size of 35 days with SW_IN VPD Tair
...251
Look up table with window size of 42 days with SW_IN VPD Tair
27
Look up table with window size of 49 days with SW_IN VPD Tair
18
Look up table with window size of 56 days with SW_IN VPD Tair
14
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
31
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
50
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.89
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.149
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..265
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...199
Look up table with window size of 14 days with SW_IN VPD Tair
.8
Look up table with window size of 7 days with SW_IN
.115
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...347
Look up table with window size of 14 days with SW_IN VPD Tair
25
Look up table with window size of 7 days with SW_IN
16
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....372
Look up table with window size of 14 days with SW_IN VPD Tair
68
Look up table with window size of 7 days with SW_IN
28
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....512
Look up table with window size of 14 days with SW_IN VPD Tair
50
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......402
Look up table with window size of 14 days with SW_IN VPD Tair
..262
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........436
Look up table with window size of 14 days with SW_IN VPD Tair
...345
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
16
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........630
Look up table with window size of 14 days with SW_IN VPD Tair
...336
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........409
Look up table with window size of 14 days with SW_IN VPD Tair
.......519
Look up table with window size of 7 days with SW_IN
..129
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.99
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............338
Look up table with window size of 14 days with SW_IN VPD Tair
..........487
Look up table with window size of 7 days with SW_IN
.....64
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....328
Look up table with window size of 28 days with SW_IN VPD Tair
.150
Look up table with window size of 35 days with SW_IN VPD Tair
30
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................478
Look up table with window size of 14 days with SW_IN VPD Tair
...........440
Look up table with window size of 7 days with SW_IN
.......116
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......322
Look up table with window size of 28 days with SW_IN VPD Tair
...244
Look up table with window size of 35 days with SW_IN VPD Tair
64
Look up table with window size of 42 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................531
Look up table with window size of 14 days with SW_IN VPD Tair
..............648
Look up table with window size of 7 days with SW_IN
........3
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........541
Look up table with window size of 28 days with SW_IN VPD Tair
..200
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
55
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................365
Look up table with window size of 14 days with SW_IN VPD Tair
....................502
Look up table with window size of 7 days with SW_IN
...............124
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............1
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............461
Look up table with window size of 28 days with SW_IN VPD Tair
.........514
Look up table with window size of 35 days with SW_IN VPD Tair
....339
Look up table with window size of 42 days with SW_IN VPD Tair
48
Look up table with window size of 49 days with SW_IN VPD Tair
40
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................481
Look up table with window size of 14 days with SW_IN VPD Tair
.......................703
Look up table with window size of 7 days with SW_IN
................12
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................2
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................610
Look up table with window size of 28 days with SW_IN VPD Tair
..........585
Look up table with window size of 35 days with SW_IN VPD Tair
....313
Look up table with window size of 42 days with SW_IN VPD Tair
.21
Look up table with window size of 49 days with SW_IN VPD Tair
.33
Look up table with window size of 56 days with SW_IN VPD Tair
.37
Look up table with window size of 63 days with SW_IN VPD Tair
22
Look up table with window size of 70 days with SW_IN VPD Tair
25
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
19
Look up table with window size of 35 days with SW_IN
8
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
6
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.74
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
25
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...284
Look up table with window size of 14 days with SW_IN VPD Tair
37
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...321
Look up table with window size of 14 days with SW_IN VPD Tair
58
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....424
Look up table with window size of 14 days with SW_IN VPD Tair
42
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....549
Look up table with window size of 14 days with SW_IN VPD Tair
12
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......607
Look up table with window size of 14 days with SW_IN VPD Tair
69
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........496
Look up table with window size of 14 days with SW_IN VPD Tair
...183
Look up table with window size of 7 days with SW_IN
.66
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
29
Look up table with window size of 28 days with SW_IN VPD Tair
30
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........534
Look up table with window size of 14 days with SW_IN VPD Tair
....390
Look up table with window size of 7 days with SW_IN
37
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........600
Look up table with window size of 14 days with SW_IN VPD Tair
.....215
Look up table with window size of 7 days with SW_IN
...33
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...97
Look up table with window size of 28 days with SW_IN VPD Tair
..144
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
78
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............481
Look up table with window size of 14 days with SW_IN VPD Tair
.........527
Look up table with window size of 7 days with SW_IN
...12
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...262
Look up table with window size of 28 days with SW_IN VPD Tair
.45
Look up table with window size of 35 days with SW_IN VPD Tair
25
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
9
Look up table with window size of 70 days with SW_IN VPD Tair
7
Look up table with window size of 14 days with SW_IN
28
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................416
Look up table with window size of 14 days with SW_IN VPD Tair
............610
Look up table with window size of 7 days with SW_IN
......98
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....449
Look up table with window size of 28 days with SW_IN VPD Tair
.103
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................605
Look up table with window size of 14 days with SW_IN VPD Tair
..............487
Look up table with window size of 7 days with SW_IN
.........55
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........544
Look up table with window size of 28 days with SW_IN VPD Tair
...285
Look up table with window size of 35 days with SW_IN VPD Tair
26
Look up table with window size of 42 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................366
Look up table with window size of 14 days with SW_IN VPD Tair
....................424
Look up table with window size of 7 days with SW_IN
................112
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............0
Mean diurnal course with window size of 2 days: .
...............0
Look up table with window size of 21 days with SW_IN VPD Tair
...............642
Look up table with window size of 28 days with SW_IN VPD Tair
........531
Look up table with window size of 35 days with SW_IN VPD Tair
...38
Look up table with window size of 42 days with SW_IN VPD Tair
..205
Look up table with window size of 49 days with SW_IN VPD Tair
51
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
17
Look up table with window size of 42 days with SW_IN
5
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................556
Look up table with window size of 14 days with SW_IN VPD Tair
.......................466
Look up table with window size of 7 days with SW_IN
..................50
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................786
Look up table with window size of 28 days with SW_IN VPD Tair
..........580
Look up table with window size of 35 days with SW_IN VPD Tair
....391
Look up table with window size of 42 days with SW_IN VPD Tair
43
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.162
Look up table with window size of 14 days with SW_IN VPD Tair
20
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..257
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...314
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...355
Look up table with window size of 14 days with SW_IN VPD Tair
32
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....445
Look up table with window size of 14 days with SW_IN VPD Tair
21
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....367
Look up table with window size of 14 days with SW_IN VPD Tair
.177
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
8
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......585
Look up table with window size of 14 days with SW_IN VPD Tair
83
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........455
Look up table with window size of 14 days with SW_IN VPD Tair
...341
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........343
Look up table with window size of 14 days with SW_IN VPD Tair
......418
Look up table with window size of 7 days with SW_IN
..141
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
57
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........323
Look up table with window size of 14 days with SW_IN VPD Tair
........516
Look up table with window size of 7 days with SW_IN
...73
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..1
Look up table with window size of 21 days with SW_IN VPD Tair
..251
Look up table with window size of 28 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............307
Look up table with window size of 14 days with SW_IN VPD Tair
..........766
Look up table with window size of 7 days with SW_IN
...48
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..262
Look up table with window size of 28 days with SW_IN VPD Tair
14
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................312
Look up table with window size of 14 days with SW_IN VPD Tair
.............516
Look up table with window size of 7 days with SW_IN
........141
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......1
Look up table with window size of 21 days with SW_IN VPD Tair
.......446
Look up table with window size of 28 days with SW_IN VPD Tair
..255
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................392
Look up table with window size of 14 days with SW_IN VPD Tair
................490
Look up table with window size of 7 days with SW_IN
...........142
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........1
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........285
Look up table with window size of 28 days with SW_IN VPD Tair
......501
Look up table with window size of 35 days with SW_IN VPD Tair
.167
Look up table with window size of 42 days with SW_IN VPD Tair
21
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................487
Look up table with window size of 14 days with SW_IN VPD Tair
...................587
Look up table with window size of 7 days with SW_IN
.............5
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............676
Look up table with window size of 28 days with SW_IN VPD Tair
......601
Look up table with window size of 35 days with SW_IN VPD Tair
37
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................447
Look up table with window size of 14 days with SW_IN VPD Tair
........................532
Look up table with window size of 7 days with SW_IN
...................65
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................622
Look up table with window size of 28 days with SW_IN VPD Tair
............663
Look up table with window size of 35 days with SW_IN VPD Tair
.....334
Look up table with window size of 42 days with SW_IN VPD Tair
..85
Look up table with window size of 49 days with SW_IN VPD Tair
.56
Look up table with window size of 56 days with SW_IN VPD Tair
55
Look up table with window size of 63 days with SW_IN VPD Tair
16
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
59
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.140
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..236
Look up table with window size of 14 days with SW_IN VPD Tair
27
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...252
Look up table with window size of 14 days with SW_IN VPD Tair
70
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...387
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....420
Look up table with window size of 14 days with SW_IN VPD Tair
42
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....487
Look up table with window size of 14 days with SW_IN VPD Tair
68
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......527
Look up table with window size of 14 days with SW_IN VPD Tair
.148
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........472
Look up table with window size of 14 days with SW_IN VPD Tair
...297
Look up table with window size of 7 days with SW_IN
16
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
13
Look up table with window size of 42 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........473
Look up table with window size of 14 days with SW_IN VPD Tair
.....353
Look up table with window size of 7 days with SW_IN
.70
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
52
Look up table with window size of 28 days with SW_IN VPD Tair
16
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........536
Look up table with window size of 14 days with SW_IN VPD Tair
......491
Look up table with window size of 7 days with SW_IN
.36
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 21 days with SW_IN VPD Tair
.59
Look up table with window size of 28 days with SW_IN VPD Tair
43
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............585
Look up table with window size of 14 days with SW_IN VPD Tair
........620
Look up table with window size of 7 days with SW_IN
.6
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.177
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................503
Look up table with window size of 14 days with SW_IN VPD Tair
...........543
Look up table with window size of 7 days with SW_IN
......8
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......485
Look up table with window size of 28 days with SW_IN VPD Tair
.75
Look up table with window size of 35 days with SW_IN VPD Tair
40
Look up table with window size of 42 days with SW_IN VPD Tair
17
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................505
Look up table with window size of 14 days with SW_IN VPD Tair
...............651
Look up table with window size of 7 days with SW_IN
........6
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........400
Look up table with window size of 28 days with SW_IN VPD Tair
....262
Look up table with window size of 35 days with SW_IN VPD Tair
.172
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
4
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................573
Look up table with window size of 14 days with SW_IN VPD Tair
..................681
Look up table with window size of 7 days with SW_IN
...........1
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........500
Look up table with window size of 28 days with SW_IN VPD Tair
......379
Look up table with window size of 35 days with SW_IN VPD Tair
..225
Look up table with window size of 42 days with SW_IN VPD Tair
22
Look up table with window size of 49 days with SW_IN VPD Tair
17
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
5
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................446
Look up table with window size of 14 days with SW_IN VPD Tair
........................386
Look up table with window size of 7 days with SW_IN
....................100
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................429
Look up table with window size of 28 days with SW_IN VPD Tair
...............744
Look up table with window size of 35 days with SW_IN VPD Tair
.......551
Look up table with window size of 42 days with SW_IN VPD Tair
..223
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
9
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
1
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
33
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
74
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.119
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..203
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...319
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...363
Look up table with window size of 14 days with SW_IN VPD Tair
25
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....404
Look up table with window size of 14 days with SW_IN VPD Tair
58
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....454
Look up table with window size of 14 days with SW_IN VPD Tair
.101
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......603
Look up table with window size of 14 days with SW_IN VPD Tair
73
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........429
Look up table with window size of 14 days with SW_IN VPD Tair
...354
Look up table with window size of 7 days with SW_IN
26
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........484
Look up table with window size of 14 days with SW_IN VPD Tair
....368
Look up table with window size of 7 days with SW_IN
.90
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
29
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........451
Look up table with window size of 14 days with SW_IN VPD Tair
.......558
Look up table with window size of 7 days with SW_IN
.18
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.2
Look up table with window size of 21 days with SW_IN VPD Tair
.133
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............459
Look up table with window size of 14 days with SW_IN VPD Tair
.........412
Look up table with window size of 7 days with SW_IN
.....142
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...320
Look up table with window size of 28 days with SW_IN VPD Tair
62
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................509
Look up table with window size of 14 days with SW_IN VPD Tair
...........407
Look up table with window size of 7 days with SW_IN
.......29
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......562
Look up table with window size of 28 days with SW_IN VPD Tair
.36
Look up table with window size of 35 days with SW_IN VPD Tair
.30
Look up table with window size of 42 days with SW_IN VPD Tair
.16
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
63
Look up table with window size of 21 days with SW_IN
19
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................468
Look up table with window size of 14 days with SW_IN VPD Tair
...............460
Look up table with window size of 7 days with SW_IN
..........46
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........7
Look up table with window size of 21 days with SW_IN VPD Tair
..........693
Look up table with window size of 28 days with SW_IN VPD Tair
...236
Look up table with window size of 35 days with SW_IN VPD Tair
70
Look up table with window size of 42 days with SW_IN VPD Tair
24
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................464
Look up table with window size of 14 days with SW_IN VPD Tair
...................608
Look up table with window size of 7 days with SW_IN
.............44
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............1
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............661
Look up table with window size of 28 days with SW_IN VPD Tair
......478
Look up table with window size of 35 days with SW_IN VPD Tair
.64
Look up table with window size of 42 days with SW_IN VPD Tair
33
Look up table with window size of 49 days with SW_IN VPD Tair
20
Look up table with window size of 56 days with SW_IN VPD Tair
13
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
5
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
2
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................556
Look up table with window size of 14 days with SW_IN VPD Tair
.......................456
Look up table with window size of 7 days with SW_IN
..................66
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................665
Look up table with window size of 28 days with SW_IN VPD Tair
...........656
Look up table with window size of 35 days with SW_IN VPD Tair
....325
Look up table with window size of 42 days with SW_IN VPD Tair
.25
Look up table with window size of 49 days with SW_IN VPD Tair
.55
Look up table with window size of 56 days with SW_IN VPD Tair
48
Look up table with window size of 63 days with SW_IN VPD Tair
15
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
12
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.145
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.178
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..206
Look up table with window size of 14 days with SW_IN VPD Tair
15
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..192
Look up table with window size of 14 days with SW_IN VPD Tair
64
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...314
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...349
Look up table with window size of 14 days with SW_IN VPD Tair
28
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....445
Look up table with window size of 14 days with SW_IN VPD Tair
20
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....410
Look up table with window size of 14 days with SW_IN VPD Tair
.135
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......618
Look up table with window size of 14 days with SW_IN VPD Tair
51
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........367
Look up table with window size of 14 days with SW_IN VPD Tair
....415
Look up table with window size of 7 days with SW_IN
26
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........405
Look up table with window size of 14 days with SW_IN VPD Tair
.....470
Look up table with window size of 7 days with SW_IN
60
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
16
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
18
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........395
Look up table with window size of 14 days with SW_IN VPD Tair
.......669
Look up table with window size of 7 days with SW_IN
.36
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
49
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............548
Look up table with window size of 14 days with SW_IN VPD Tair
........532
Look up table with window size of 7 days with SW_IN
...3
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...241
Look up table with window size of 28 days with SW_IN VPD Tair
60
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
10
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................614
Look up table with window size of 14 days with SW_IN VPD Tair
..........676
Look up table with window size of 7 days with SW_IN
...9
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...333
Look up table with window size of 28 days with SW_IN VPD Tair
25
Look up table with window size of 35 days with SW_IN VPD Tair
13
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................422
Look up table with window size of 14 days with SW_IN VPD Tair
...............647
Look up table with window size of 7 days with SW_IN
.........58
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........810
Look up table with window size of 28 days with SW_IN VPD Tair
58
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................361
Look up table with window size of 14 days with SW_IN VPD Tair
....................289
Look up table with window size of 7 days with SW_IN
.................221
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............0
Mean diurnal course with window size of 2 days: .
...............0
Look up table with window size of 21 days with SW_IN VPD Tair
...............410
Look up table with window size of 28 days with SW_IN VPD Tair
...........480
Look up table with window size of 35 days with SW_IN VPD Tair
......201
Look up table with window size of 42 days with SW_IN VPD Tair
....146
Look up table with window size of 49 days with SW_IN VPD Tair
..40
Look up table with window size of 56 days with SW_IN VPD Tair
..11
Look up table with window size of 63 days with SW_IN VPD Tair
..33
Look up table with window size of 70 days with SW_IN VPD Tair
..90
Look up table with window size of 14 days with SW_IN
.100
Look up table with window size of 21 days with SW_IN
8
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
9
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................484
Look up table with window size of 14 days with SW_IN VPD Tair
.......................600
Look up table with window size of 7 days with SW_IN
.................41
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................446
Look up table with window size of 28 days with SW_IN VPD Tair
.............430
Look up table with window size of 35 days with SW_IN VPD Tair
........353
Look up table with window size of 42 days with SW_IN VPD Tair
.....100
Look up table with window size of 49 days with SW_IN VPD Tair
....107
Look up table with window size of 56 days with SW_IN VPD Tair
...54
Look up table with window size of 63 days with SW_IN VPD Tair
..28
Look up table with window size of 70 days with SW_IN VPD Tair
..14
Look up table with window size of 14 days with SW_IN
..5
Look up table with window size of 21 days with SW_IN
..118
Look up table with window size of 28 days with SW_IN
92
Look up table with window size of 35 days with SW_IN
7
Finished gap filling of 'P' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.115
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.143
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..230
Look up table with window size of 14 days with SW_IN VPD Tair
37
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...314
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...197
Look up table with window size of 14 days with SW_IN VPD Tair
.101
Look up table with window size of 7 days with SW_IN
90
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....399
Look up table with window size of 14 days with SW_IN VPD Tair
69
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....474
Look up table with window size of 14 days with SW_IN VPD Tair
88
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......481
Look up table with window size of 14 days with SW_IN VPD Tair
.151
Look up table with window size of 7 days with SW_IN
20
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
14
Look up table with window size of 49 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........528
Look up table with window size of 14 days with SW_IN VPD Tair
..280
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........494
Look up table with window size of 14 days with SW_IN VPD Tair
....417
Look up table with window size of 7 days with SW_IN
41
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
17
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........488
Look up table with window size of 14 days with SW_IN VPD Tair
......587
Look up table with window size of 7 days with SW_IN
15
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
59
Look up table with window size of 28 days with SW_IN VPD Tair
12
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............520
Look up table with window size of 14 days with SW_IN VPD Tair
........736
Look up table with window size of 7 days with SW_IN
.5
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.133
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................544
Look up table with window size of 14 days with SW_IN VPD Tair
...........489
Look up table with window size of 7 days with SW_IN
......32
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......4
Look up table with window size of 21 days with SW_IN VPD Tair
......427
Look up table with window size of 28 days with SW_IN VPD Tair
.149
Look up table with window size of 35 days with SW_IN VPD Tair
18
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................618
Look up table with window size of 14 days with SW_IN VPD Tair
.............491
Look up table with window size of 7 days with SW_IN
........33
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........769
Look up table with window size of 28 days with SW_IN VPD Tair
77
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
19
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................527
Look up table with window size of 14 days with SW_IN VPD Tair
..................663
Look up table with window size of 7 days with SW_IN
............40
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........3
Look up table with window size of 21 days with SW_IN VPD Tair
...........574
Look up table with window size of 28 days with SW_IN VPD Tair
.....461
Look up table with window size of 35 days with SW_IN VPD Tair
.81
Look up table with window size of 42 days with SW_IN VPD Tair
46
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................521
Look up table with window size of 14 days with SW_IN VPD Tair
.......................522
Look up table with window size of 7 days with SW_IN
..................31
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................3
Look up table with window size of 21 days with SW_IN VPD Tair
..................439
Look up table with window size of 28 days with SW_IN VPD Tair
.............666
Look up table with window size of 35 days with SW_IN VPD Tair
......384
Look up table with window size of 42 days with SW_IN VPD Tair
...220
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
74
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
3
Look up table with window size of 70 days with SW_IN
1
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
2
Finished gap filling of 'P' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.176
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..258
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...280
Look up table with window size of 14 days with SW_IN VPD Tair
38
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...357
Look up table with window size of 14 days with SW_IN VPD Tair
31
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....321
Look up table with window size of 14 days with SW_IN VPD Tair
.127
Look up table with window size of 7 days with SW_IN
20
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....493
Look up table with window size of 14 days with SW_IN VPD Tair
67
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......384
Look up table with window size of 14 days with SW_IN VPD Tair
..263
Look up table with window size of 7 days with SW_IN
18
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........445
Look up table with window size of 14 days with SW_IN VPD Tair
...314
Look up table with window size of 7 days with SW_IN
25
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Look up table with window size of 28 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........581
Look up table with window size of 14 days with SW_IN VPD Tair
...322
Look up table with window size of 7 days with SW_IN
56
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
14
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........574
Look up table with window size of 14 days with SW_IN VPD Tair
.....551
Look up table with window size of 7 days with SW_IN
30
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............450
Look up table with window size of 14 days with SW_IN VPD Tair
.........402
Look up table with window size of 7 days with SW_IN
.....127
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....389
Look up table with window size of 28 days with SW_IN VPD Tair
28
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................544
Look up table with window size of 14 days with SW_IN VPD Tair
...........698
Look up table with window size of 7 days with SW_IN
....0
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....402
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
9
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................517
Look up table with window size of 14 days with SW_IN VPD Tair
..............576
Look up table with window size of 7 days with SW_IN
.........24
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........1
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........731
Look up table with window size of 28 days with SW_IN VPD Tair
.127
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
15
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................469
Look up table with window size of 14 days with SW_IN VPD Tair
...................645
Look up table with window size of 7 days with SW_IN
............57
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............1
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............534
Look up table with window size of 28 days with SW_IN VPD Tair
......313
Look up table with window size of 35 days with SW_IN VPD Tair
...154
Look up table with window size of 42 days with SW_IN VPD Tair
..128
Look up table with window size of 49 days with SW_IN VPD Tair
.80
Look up table with window size of 56 days with SW_IN VPD Tair
17
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
3
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................489
Look up table with window size of 14 days with SW_IN VPD Tair
.......................334
Look up table with window size of 7 days with SW_IN
....................121
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................749
Look up table with window size of 28 days with SW_IN VPD Tair
...........679
Look up table with window size of 35 days with SW_IN VPD Tair
.....343
Look up table with window size of 42 days with SW_IN VPD Tair
.42
Look up table with window size of 49 days with SW_IN VPD Tair
.20
Look up table with window size of 56 days with SW_IN VPD Tair
.31
Look up table with window size of 63 days with SW_IN VPD Tair
26
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
14
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
23
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
63
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.115
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..213
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..229
Look up table with window size of 14 days with SW_IN VPD Tair
37
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...305
Look up table with window size of 14 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...367
Look up table with window size of 14 days with SW_IN VPD Tair
17
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....390
Look up table with window size of 14 days with SW_IN VPD Tair
67
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....241
Look up table with window size of 14 days with SW_IN VPD Tair
...166
Look up table with window size of 7 days with SW_IN
.144
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
10
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......475
Look up table with window size of 14 days with SW_IN VPD Tair
..173
Look up table with window size of 7 days with SW_IN
28
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........528
Look up table with window size of 14 days with SW_IN VPD Tair
..283
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........324
Look up table with window size of 14 days with SW_IN VPD Tair
......606
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
16
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........570
Look up table with window size of 14 days with SW_IN VPD Tair
.....389
Look up table with window size of 7 days with SW_IN
..12
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.179
Look up table with window size of 28 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............470
Look up table with window size of 14 days with SW_IN VPD Tair
.........392
Look up table with window size of 7 days with SW_IN
.....109
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....366
Look up table with window size of 28 days with SW_IN VPD Tair
53
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................512
Look up table with window size of 14 days with SW_IN VPD Tair
...........178
Look up table with window size of 7 days with SW_IN
.........87
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........449
Look up table with window size of 28 days with SW_IN VPD Tair
....291
Look up table with window size of 35 days with SW_IN VPD Tair
.58
Look up table with window size of 42 days with SW_IN VPD Tair
.7
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
60
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
15
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................493
Look up table with window size of 14 days with SW_IN VPD Tair
...............734
Look up table with window size of 7 days with SW_IN
.......4
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......1
Mean diurnal course with window size of 2 days: .
.......4
Look up table with window size of 21 days with SW_IN VPD Tair
.......560
Look up table with window size of 28 days with SW_IN VPD Tair
..193
Look up table with window size of 35 days with SW_IN VPD Tair
16
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................448
Look up table with window size of 14 days with SW_IN VPD Tair
...................483
Look up table with window size of 7 days with SW_IN
..............119
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............280
Look up table with window size of 28 days with SW_IN VPD Tair
..........460
Look up table with window size of 35 days with SW_IN VPD Tair
......504
Look up table with window size of 42 days with SW_IN VPD Tair
.93
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
14
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................579
Look up table with window size of 14 days with SW_IN VPD Tair
.......................385
Look up table with window size of 7 days with SW_IN
...................2
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................523
Look up table with window size of 28 days with SW_IN VPD Tair
.............485
Look up table with window size of 35 days with SW_IN VPD Tair
.........780
Look up table with window size of 42 days with SW_IN VPD Tair
.97
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
8
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
16
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
39
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
71
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.93
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.136
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
13
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.169
Look up table with window size of 14 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...311
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...382
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....371
Look up table with window size of 14 days with SW_IN VPD Tair
72
Look up table with window size of 7 days with SW_IN
23
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....476
Look up table with window size of 14 days with SW_IN VPD Tair
86
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......261
Look up table with window size of 14 days with SW_IN VPD Tair
....336
Look up table with window size of 7 days with SW_IN
77
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........529
Look up table with window size of 14 days with SW_IN VPD Tair
..268
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........363
Look up table with window size of 14 days with SW_IN VPD Tair
......499
Look up table with window size of 7 days with SW_IN
.40
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
7
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
26
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
16
Look up table with window size of 21 days with SW_IN
16
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........364
Look up table with window size of 14 days with SW_IN VPD Tair
........717
Look up table with window size of 7 days with SW_IN
70
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
16
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............482
Look up table with window size of 14 days with SW_IN VPD Tair
.........432
Look up table with window size of 7 days with SW_IN
....4
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....456
Look up table with window size of 28 days with SW_IN VPD Tair
20
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................474
Look up table with window size of 14 days with SW_IN VPD Tair
............616
Look up table with window size of 7 days with SW_IN
.....11
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....1
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....486
Look up table with window size of 28 days with SW_IN VPD Tair
59
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
12
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................441
Look up table with window size of 14 days with SW_IN VPD Tair
...............537
Look up table with window size of 7 days with SW_IN
..........64
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........745
Look up table with window size of 28 days with SW_IN VPD Tair
..147
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
14
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
31
Look up table with window size of 21 days with SW_IN
13
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................456
Look up table with window size of 14 days with SW_IN VPD Tair
...................329
Look up table with window size of 7 days with SW_IN
................144
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............341
Look up table with window size of 28 days with SW_IN VPD Tair
...........405
Look up table with window size of 35 days with SW_IN VPD Tair
.......302
Look up table with window size of 42 days with SW_IN VPD Tair
....350
Look up table with window size of 49 days with SW_IN VPD Tair
78
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................543
Look up table with window size of 14 days with SW_IN VPD Tair
.......................618
Look up table with window size of 7 days with SW_IN
.................10
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................693
Look up table with window size of 28 days with SW_IN VPD Tair
..........465
Look up table with window size of 35 days with SW_IN VPD Tair
.....357
Look up table with window size of 42 days with SW_IN VPD Tair
.162
Look up table with window size of 49 days with SW_IN VPD Tair
15
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
3
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
39
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
61
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
20
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.87
Look up table with window size of 14 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..217
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..263
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...280
Look up table with window size of 14 days with SW_IN VPD Tair
41
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...383
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....424
Look up table with window size of 14 days with SW_IN VPD Tair
42
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....560
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......437
Look up table with window size of 14 days with SW_IN VPD Tair
..151
Look up table with window size of 7 days with SW_IN
87
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........560
Look up table with window size of 14 days with SW_IN VPD Tair
..175
Look up table with window size of 7 days with SW_IN
25
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
43
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........533
Look up table with window size of 14 days with SW_IN VPD Tair
....387
Look up table with window size of 7 days with SW_IN
34
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
11
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........529
Look up table with window size of 14 days with SW_IN VPD Tair
......560
Look up table with window size of 7 days with SW_IN
20
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
58
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............502
Look up table with window size of 14 days with SW_IN VPD Tair
........657
Look up table with window size of 7 days with SW_IN
..14
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..194
Look up table with window size of 28 days with SW_IN VPD Tair
13
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................435
Look up table with window size of 14 days with SW_IN VPD Tair
............567
Look up table with window size of 7 days with SW_IN
......30
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......531
Look up table with window size of 28 days with SW_IN VPD Tair
.108
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................455
Look up table with window size of 14 days with SW_IN VPD Tair
...............672
Look up table with window size of 7 days with SW_IN
........104
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......639
Look up table with window size of 28 days with SW_IN VPD Tair
.86
Look up table with window size of 35 days with SW_IN VPD Tair
38
Look up table with window size of 42 days with SW_IN VPD Tair
14
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................517
Look up table with window size of 14 days with SW_IN VPD Tair
..................727
Look up table with window size of 7 days with SW_IN
...........25
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........414
Look up table with window size of 28 days with SW_IN VPD Tair
.......494
Look up table with window size of 35 days with SW_IN VPD Tair
..185
Look up table with window size of 42 days with SW_IN VPD Tair
14
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................452
Look up table with window size of 14 days with SW_IN VPD Tair
........................750
Look up table with window size of 7 days with SW_IN
................0
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................1
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................609
Look up table with window size of 28 days with SW_IN VPD Tair
..........617
Look up table with window size of 35 days with SW_IN VPD Tair
....352
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
16
Look up table with window size of 21 days with SW_IN
54
Look up table with window size of 28 days with SW_IN
10
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
16
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN VPD Tair
27
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
70
Look up table with window size of 14 days with SW_IN VPD Tair
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.110
Look up table with window size of 14 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.148
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..211
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..263
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...290
Look up table with window size of 14 days with SW_IN VPD Tair
22
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...370
Look up table with window size of 14 days with SW_IN VPD Tair
18
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....402
Look up table with window size of 14 days with SW_IN VPD Tair
39
Look up table with window size of 7 days with SW_IN
27
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....197
Look up table with window size of 14 days with SW_IN VPD Tair
...301
Look up table with window size of 7 days with SW_IN
62
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......516
Look up table with window size of 14 days with SW_IN VPD Tair
.149
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........541
Look up table with window size of 14 days with SW_IN VPD Tair
..244
Look up table with window size of 7 days with SW_IN
26
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........437
Look up table with window size of 14 days with SW_IN VPD Tair
.....469
Look up table with window size of 7 days with SW_IN
32
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
28
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........536
Look up table with window size of 14 days with SW_IN VPD Tair
......504
Look up table with window size of 7 days with SW_IN
.10
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 21 days with SW_IN VPD Tair
.107
Look up table with window size of 28 days with SW_IN VPD Tair
8
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............413
Look up table with window size of 14 days with SW_IN VPD Tair
.........735
Look up table with window size of 7 days with SW_IN
..9
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..1
Look up table with window size of 21 days with SW_IN VPD Tair
..208
Look up table with window size of 28 days with SW_IN VPD Tair
30
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................563
Look up table with window size of 14 days with SW_IN VPD Tair
...........480
Look up table with window size of 7 days with SW_IN
......39
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....411
Look up table with window size of 28 days with SW_IN VPD Tair
.120
Look up table with window size of 35 days with SW_IN VPD Tair
48
Look up table with window size of 42 days with SW_IN VPD Tair
15
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................540
Look up table with window size of 14 days with SW_IN VPD Tair
..............314
Look up table with window size of 7 days with SW_IN
...........40
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........458
Look up table with window size of 28 days with SW_IN VPD Tair
......288
Look up table with window size of 35 days with SW_IN VPD Tair
...112
Look up table with window size of 42 days with SW_IN VPD Tair
..91
Look up table with window size of 49 days with SW_IN VPD Tair
.18
Look up table with window size of 56 days with SW_IN VPD Tair
.4
Look up table with window size of 63 days with SW_IN VPD Tair
.3
Look up table with window size of 70 days with SW_IN VPD Tair
.1
Look up table with window size of 14 days with SW_IN
.58
Look up table with window size of 21 days with SW_IN
78
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................281
Look up table with window size of 14 days with SW_IN VPD Tair
.....................526
Look up table with window size of 7 days with SW_IN
...............129
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............436
Look up table with window size of 28 days with SW_IN VPD Tair
..........570
Look up table with window size of 35 days with SW_IN VPD Tair
....396
Look up table with window size of 42 days with SW_IN VPD Tair
67
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................351
Look up table with window size of 14 days with SW_IN VPD Tair
.........................546
Look up table with window size of 7 days with SW_IN
...................155
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................495
Look up table with window size of 28 days with SW_IN VPD Tair
.............639
Look up table with window size of 35 days with SW_IN VPD Tair
......573
Look up table with window size of 42 days with SW_IN VPD Tair
.48
Look up table with window size of 49 days with SW_IN VPD Tair
43
Look up table with window size of 56 days with SW_IN VPD Tair
10
Look up table with window size of 63 days with SW_IN VPD Tair
10
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.146
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.169
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...304
Look up table with window size of 14 days with SW_IN VPD Tair
15
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...380
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....431
Look up table with window size of 14 days with SW_IN VPD Tair
26
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....347
Look up table with window size of 14 days with SW_IN VPD Tair
..206
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......524
Look up table with window size of 14 days with SW_IN VPD Tair
.131
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........549
Look up table with window size of 14 days with SW_IN VPD Tair
..221
Look up table with window size of 7 days with SW_IN
18
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
21
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........347
Look up table with window size of 14 days with SW_IN VPD Tair
......515
Look up table with window size of 7 days with SW_IN
.100
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
9
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........552
Look up table with window size of 14 days with SW_IN VPD Tair
......554
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
47
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............488
Look up table with window size of 14 days with SW_IN VPD Tair
.........516
Look up table with window size of 7 days with SW_IN
...10
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...3
Look up table with window size of 21 days with SW_IN VPD Tair
...373
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................532
Look up table with window size of 14 days with SW_IN VPD Tair
...........536
Look up table with window size of 7 days with SW_IN
......15
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....414
Look up table with window size of 28 days with SW_IN VPD Tair
.48
Look up table with window size of 35 days with SW_IN VPD Tair
.107
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
10
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................397
Look up table with window size of 14 days with SW_IN VPD Tair
................488
Look up table with window size of 7 days with SW_IN
...........128
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........508
Look up table with window size of 28 days with SW_IN VPD Tair
....227
Look up table with window size of 35 days with SW_IN VPD Tair
..95
Look up table with window size of 42 days with SW_IN VPD Tair
.120
Look up table with window size of 49 days with SW_IN VPD Tair
12
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
14
Look up table with window size of 35 days with SW_IN
5
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................470
Look up table with window size of 14 days with SW_IN VPD Tair
...................568
Look up table with window size of 7 days with SW_IN
.............183
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........626
Look up table with window size of 28 days with SW_IN VPD Tair
.....486
Look up table with window size of 35 days with SW_IN VPD Tair
72
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................475
Look up table with window size of 14 days with SW_IN VPD Tair
........................541
Look up table with window size of 7 days with SW_IN
..................80
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................659
Look up table with window size of 28 days with SW_IN VPD Tair
...........369
Look up table with window size of 35 days with SW_IN VPD Tair
.......525
Look up table with window size of 42 days with SW_IN VPD Tair
..136
Look up table with window size of 49 days with SW_IN VPD Tair
63
Look up table with window size of 56 days with SW_IN VPD Tair
19
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
7
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
9
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.111
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..210
Look up table with window size of 14 days with SW_IN VPD Tair
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..225
Look up table with window size of 14 days with SW_IN VPD Tair
39
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...283
Look up table with window size of 14 days with SW_IN VPD Tair
38
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...364
Look up table with window size of 14 days with SW_IN VPD Tair
17
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....435
Look up table with window size of 14 days with SW_IN VPD Tair
18
Look up table with window size of 7 days with SW_IN
15
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....406
Look up table with window size of 14 days with SW_IN VPD Tair
.147
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......434
Look up table with window size of 14 days with SW_IN VPD Tair
..210
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 21 days with SW_IN VPD Tair
8
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........421
Look up table with window size of 14 days with SW_IN VPD Tair
...377
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........481
Look up table with window size of 14 days with SW_IN VPD Tair
....437
Look up table with window size of 7 days with SW_IN
37
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
17
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........448
Look up table with window size of 14 days with SW_IN VPD Tair
.......497
Look up table with window size of 7 days with SW_IN
..80
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.128
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............549
Look up table with window size of 14 days with SW_IN VPD Tair
........642
Look up table with window size of 7 days with SW_IN
..17
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.176
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................426
Look up table with window size of 14 days with SW_IN VPD Tair
............526
Look up table with window size of 7 days with SW_IN
.......18
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......646
Look up table with window size of 28 days with SW_IN VPD Tair
41
Look up table with window size of 35 days with SW_IN VPD Tair
15
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................395
Look up table with window size of 14 days with SW_IN VPD Tair
................635
Look up table with window size of 7 days with SW_IN
.........59
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........1
Look up table with window size of 21 days with SW_IN VPD Tair
.........625
Look up table with window size of 28 days with SW_IN VPD Tair
..292
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................336
Look up table with window size of 14 days with SW_IN VPD Tair
....................476
Look up table with window size of 7 days with SW_IN
...............126
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............286
Look up table with window size of 28 days with SW_IN VPD Tair
...........320
Look up table with window size of 35 days with SW_IN VPD Tair
........317
Look up table with window size of 42 days with SW_IN VPD Tair
.....370
Look up table with window size of 49 days with SW_IN VPD Tair
.139
Look up table with window size of 56 days with SW_IN VPD Tair
18
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
13
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................367
Look up table with window size of 14 days with SW_IN VPD Tair
.........................366
Look up table with window size of 7 days with SW_IN
.....................207
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................300
Look up table with window size of 28 days with SW_IN VPD Tair
................746
Look up table with window size of 35 days with SW_IN VPD Tair
........535
Look up table with window size of 42 days with SW_IN VPD Tair
...358
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
39
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.143
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.156
Look up table with window size of 14 days with SW_IN VPD Tair
20
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..212
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..258
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...296
Look up table with window size of 14 days with SW_IN VPD Tair
26
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...218
Look up table with window size of 14 days with SW_IN VPD Tair
.35
Look up table with window size of 7 days with SW_IN
.135
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....397
Look up table with window size of 14 days with SW_IN VPD Tair
31
Look up table with window size of 7 days with SW_IN
33
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....334
Look up table with window size of 14 days with SW_IN VPD Tair
..221
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......463
Look up table with window size of 14 days with SW_IN VPD Tair
..200
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........487
Look up table with window size of 14 days with SW_IN VPD Tair
...299
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........353
Look up table with window size of 14 days with SW_IN VPD Tair
......254
Look up table with window size of 7 days with SW_IN
...253
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.12
Look up table with window size of 28 days with SW_IN VPD Tair
.93
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........417
Look up table with window size of 14 days with SW_IN VPD Tair
.......352
Look up table with window size of 7 days with SW_IN
...122
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..1
Look up table with window size of 21 days with SW_IN VPD Tair
..224
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
24
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............590
Look up table with window size of 14 days with SW_IN VPD Tair
........670
Look up table with window size of 7 days with SW_IN
.0
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.139
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................368
Look up table with window size of 14 days with SW_IN VPD Tair
.............530
Look up table with window size of 7 days with SW_IN
.......159
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......261
Look up table with window size of 28 days with SW_IN VPD Tair
...162
Look up table with window size of 35 days with SW_IN VPD Tair
.172
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
10
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................439
Look up table with window size of 14 days with SW_IN VPD Tair
...............628
Look up table with window size of 7 days with SW_IN
.........36
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........1
Mean diurnal course with window size of 2 days: .
.........1
Look up table with window size of 21 days with SW_IN VPD Tair
.........496
Look up table with window size of 28 days with SW_IN VPD Tair
....342
Look up table with window size of 35 days with SW_IN VPD Tair
15
Look up table with window size of 42 days with SW_IN VPD Tair
32
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
7
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................528
Look up table with window size of 14 days with SW_IN VPD Tair
..................492
Look up table with window size of 7 days with SW_IN
.............84
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............2
Look up table with window size of 21 days with SW_IN VPD Tair
............562
Look up table with window size of 28 days with SW_IN VPD Tair
.......449
Look up table with window size of 35 days with SW_IN VPD Tair
..164
Look up table with window size of 42 days with SW_IN VPD Tair
.60
Look up table with window size of 49 days with SW_IN VPD Tair
30
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
19
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
3
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
3
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................358
Look up table with window size of 14 days with SW_IN VPD Tair
.........................374
Look up table with window size of 7 days with SW_IN
.....................221
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................442
Look up table with window size of 28 days with SW_IN VPD Tair
..............451
Look up table with window size of 35 days with SW_IN VPD Tair
..........449
Look up table with window size of 42 days with SW_IN VPD Tair
.....168
Look up table with window size of 49 days with SW_IN VPD Tair
....189
Look up table with window size of 56 days with SW_IN VPD Tair
..193
Look up table with window size of 63 days with SW_IN VPD Tair
27
Look up table with window size of 70 days with SW_IN VPD Tair
6
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
14
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
77
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..209
Look up table with window size of 14 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...375
Look up table with window size of 14 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....458
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....413
Look up table with window size of 14 days with SW_IN VPD Tair
.106
Look up table with window size of 7 days with SW_IN
43
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......449
Look up table with window size of 14 days with SW_IN VPD Tair
..198
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........510
Look up table with window size of 14 days with SW_IN VPD Tair
...284
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........464
Look up table with window size of 14 days with SW_IN VPD Tair
.....387
Look up table with window size of 7 days with SW_IN
.89
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
33
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........400
Look up table with window size of 14 days with SW_IN VPD Tair
.......448
Look up table with window size of 7 days with SW_IN
...132
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 21 days with SW_IN VPD Tair
.156
Look up table with window size of 28 days with SW_IN VPD Tair
16
Look up table with window size of 35 days with SW_IN VPD Tair
13
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............551
Look up table with window size of 14 days with SW_IN VPD Tair
........663
Look up table with window size of 7 days with SW_IN
.29
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.121
Look up table with window size of 28 days with SW_IN VPD Tair
20
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................386
Look up table with window size of 14 days with SW_IN VPD Tair
............675
Look up table with window size of 7 days with SW_IN
......10
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......427
Look up table with window size of 28 days with SW_IN VPD Tair
.113
Look up table with window size of 35 days with SW_IN VPD Tair
44
Look up table with window size of 42 days with SW_IN VPD Tair
19
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................406
Look up table with window size of 14 days with SW_IN VPD Tair
................683
Look up table with window size of 7 days with SW_IN
.........18
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........1
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........524
Look up table with window size of 28 days with SW_IN VPD Tair
...223
Look up table with window size of 35 days with SW_IN VPD Tair
.92
Look up table with window size of 42 days with SW_IN VPD Tair
41
Look up table with window size of 49 days with SW_IN VPD Tair
9
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
7
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................396
Look up table with window size of 14 days with SW_IN VPD Tair
....................612
Look up table with window size of 7 days with SW_IN
.............3
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............738
Look up table with window size of 28 days with SW_IN VPD Tair
......525
Look up table with window size of 35 days with SW_IN VPD Tair
.89
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
9
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
11
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................418
Look up table with window size of 14 days with SW_IN VPD Tair
........................756
Look up table with window size of 7 days with SW_IN
.................62
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................526
Look up table with window size of 28 days with SW_IN VPD Tair
...........626
Look up table with window size of 35 days with SW_IN VPD Tair
....319
Look up table with window size of 42 days with SW_IN VPD Tair
.57
Look up table with window size of 49 days with SW_IN VPD Tair
.28
Look up table with window size of 56 days with SW_IN VPD Tair
34
Look up table with window size of 63 days with SW_IN VPD Tair
11
Look up table with window size of 70 days with SW_IN VPD Tair
12
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
10
Look up table with window size of 49 days with SW_IN
6
Look up table with window size of 56 days with SW_IN
7
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.128
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
13
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..209
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...309
Look up table with window size of 14 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...388
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....313
Look up table with window size of 14 days with SW_IN VPD Tair
.147
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....360
Look up table with window size of 14 days with SW_IN VPD Tair
..196
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......441
Look up table with window size of 14 days with SW_IN VPD Tair
..169
Look up table with window size of 7 days with SW_IN
59
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........367
Look up table with window size of 14 days with SW_IN VPD Tair
....381
Look up table with window size of 7 days with SW_IN
29
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
31
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........593
Look up table with window size of 14 days with SW_IN VPD Tair
...356
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
13
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........398
Look up table with window size of 14 days with SW_IN VPD Tair
.......448
Look up table with window size of 7 days with SW_IN
...140
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 21 days with SW_IN VPD Tair
.156
Look up table with window size of 28 days with SW_IN VPD Tair
15
Look up table with window size of 35 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............399
Look up table with window size of 14 days with SW_IN VPD Tair
..........531
Look up table with window size of 7 days with SW_IN
....135
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...230
Look up table with window size of 28 days with SW_IN VPD Tair
.85
Look up table with window size of 35 days with SW_IN VPD Tair
12
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................405
Look up table with window size of 14 days with SW_IN VPD Tair
............582
Look up table with window size of 7 days with SW_IN
......43
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......399
Look up table with window size of 28 days with SW_IN VPD Tair
..75
Look up table with window size of 35 days with SW_IN VPD Tair
.39
Look up table with window size of 42 days with SW_IN VPD Tair
.10
Look up table with window size of 49 days with SW_IN VPD Tair
.9
Look up table with window size of 56 days with SW_IN VPD Tair
.5
Look up table with window size of 63 days with SW_IN VPD Tair
.82
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
19
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................437
Look up table with window size of 14 days with SW_IN VPD Tair
...............253
Look up table with window size of 7 days with SW_IN
.............128
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........453
Look up table with window size of 28 days with SW_IN VPD Tair
.......520
Look up table with window size of 35 days with SW_IN VPD Tair
..116
Look up table with window size of 42 days with SW_IN VPD Tair
.51
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
47
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................528
Look up table with window size of 14 days with SW_IN VPD Tair
..................282
Look up table with window size of 7 days with SW_IN
...............114
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............3
Look up table with window size of 21 days with SW_IN VPD Tair
..............415
Look up table with window size of 28 days with SW_IN VPD Tair
..........268
Look up table with window size of 35 days with SW_IN VPD Tair
.......288
Look up table with window size of 42 days with SW_IN VPD Tair
.....169
Look up table with window size of 49 days with SW_IN VPD Tair
...131
Look up table with window size of 56 days with SW_IN VPD Tair
..50
Look up table with window size of 63 days with SW_IN VPD Tair
.104
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
53
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................534
Look up table with window size of 14 days with SW_IN VPD Tair
.......................566
Look up table with window size of 7 days with SW_IN
.................30
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................561
Look up table with window size of 28 days with SW_IN VPD Tair
...........652
Look up table with window size of 35 days with SW_IN VPD Tair
.....366
Look up table with window size of 42 days with SW_IN VPD Tair
.68
Look up table with window size of 49 days with SW_IN VPD Tair
.24
Look up table with window size of 56 days with SW_IN VPD Tair
9
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
6
Look up table with window size of 42 days with SW_IN
9
Look up table with window size of 49 days with SW_IN
24
Look up table with window size of 56 days with SW_IN
18
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.112
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..215
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..255
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...278
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
36
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...388
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....443
Look up table with window size of 14 days with SW_IN VPD Tair
20
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....299
Look up table with window size of 14 days with SW_IN VPD Tair
..140
Look up table with window size of 7 days with SW_IN
.120
Mean diurnal course with window size of 0 days: .
1
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......498
Look up table with window size of 14 days with SW_IN VPD Tair
.126
Look up table with window size of 7 days with SW_IN
29
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
10
Look up table with window size of 21 days with SW_IN VPD Tair
7
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........512
Look up table with window size of 14 days with SW_IN VPD Tair
..299
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........371
Look up table with window size of 14 days with SW_IN VPD Tair
......341
Look up table with window size of 7 days with SW_IN
..62
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.168
Look up table with window size of 28 days with SW_IN VPD Tair
27
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........459
Look up table with window size of 14 days with SW_IN VPD Tair
.......488
Look up table with window size of 7 days with SW_IN
..53
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 21 days with SW_IN VPD Tair
.144
Look up table with window size of 28 days with SW_IN VPD Tair
19
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............435
Look up table with window size of 14 days with SW_IN VPD Tair
.........572
Look up table with window size of 7 days with SW_IN
...12
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...362
Look up table with window size of 28 days with SW_IN VPD Tair
17
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................486
Look up table with window size of 14 days with SW_IN VPD Tair
...........589
Look up table with window size of 7 days with SW_IN
......97
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....414
Look up table with window size of 28 days with SW_IN VPD Tair
90
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................459
Look up table with window size of 14 days with SW_IN VPD Tair
...............538
Look up table with window size of 7 days with SW_IN
..........79
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........270
Look up table with window size of 28 days with SW_IN VPD Tair
......370
Look up table with window size of 35 days with SW_IN VPD Tair
..223
Look up table with window size of 42 days with SW_IN VPD Tair
33
Look up table with window size of 49 days with SW_IN VPD Tair
15
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
11
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................451
Look up table with window size of 14 days with SW_IN VPD Tair
...................589
Look up table with window size of 7 days with SW_IN
.............91
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............611
Look up table with window size of 28 days with SW_IN VPD Tair
......440
Look up table with window size of 35 days with SW_IN VPD Tair
..102
Look up table with window size of 42 days with SW_IN VPD Tair
.14
Look up table with window size of 49 days with SW_IN VPD Tair
.24
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
10
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
32
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
28
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................468
Look up table with window size of 14 days with SW_IN VPD Tair
........................562
Look up table with window size of 7 days with SW_IN
..................128
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................2
Look up table with window size of 21 days with SW_IN VPD Tair
.................566
Look up table with window size of 28 days with SW_IN VPD Tair
...........680
Look up table with window size of 35 days with SW_IN VPD Tair
....450
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
15
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..251
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...319
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...364
Look up table with window size of 14 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....458
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....459
Look up table with window size of 14 days with SW_IN VPD Tair
.98
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......380
Look up table with window size of 14 days with SW_IN VPD Tair
..253
Look up table with window size of 7 days with SW_IN
24
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
17
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........577
Look up table with window size of 14 days with SW_IN VPD Tair
..223
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........374
Look up table with window size of 14 days with SW_IN VPD Tair
.....368
Look up table with window size of 7 days with SW_IN
..121
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.100
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........482
Look up table with window size of 14 days with SW_IN VPD Tair
......374
Look up table with window size of 7 days with SW_IN
...43
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..75
Look up table with window size of 28 days with SW_IN VPD Tair
.117
Look up table with window size of 35 days with SW_IN VPD Tair
26
Look up table with window size of 42 days with SW_IN VPD Tair
21
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
6
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............395
Look up table with window size of 14 days with SW_IN VPD Tair
..........486
Look up table with window size of 7 days with SW_IN
.....108
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....7
Mean diurnal course with window size of 2 days: .
....4
Look up table with window size of 21 days with SW_IN VPD Tair
...317
Look up table with window size of 28 days with SW_IN VPD Tair
35
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
13
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................536
Look up table with window size of 14 days with SW_IN VPD Tair
...........473
Look up table with window size of 7 days with SW_IN
......68
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....487
Look up table with window size of 28 days with SW_IN VPD Tair
.92
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
11
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................383
Look up table with window size of 14 days with SW_IN VPD Tair
................471
Look up table with window size of 7 days with SW_IN
...........125
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........467
Look up table with window size of 28 days with SW_IN VPD Tair
.....246
Look up table with window size of 35 days with SW_IN VPD Tair
...95
Look up table with window size of 42 days with SW_IN VPD Tair
..143
Look up table with window size of 49 days with SW_IN VPD Tair
38
Look up table with window size of 56 days with SW_IN VPD Tair
17
Look up table with window size of 63 days with SW_IN VPD Tair
9
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................297
Look up table with window size of 14 days with SW_IN VPD Tair
.....................401
Look up table with window size of 7 days with SW_IN
.................356
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 21 days with SW_IN VPD Tair
.............661
Look up table with window size of 28 days with SW_IN VPD Tair
......506
Look up table with window size of 35 days with SW_IN VPD Tair
.141
Look up table with window size of 42 days with SW_IN VPD Tair
19
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
14
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................515
Look up table with window size of 14 days with SW_IN VPD Tair
.......................610
Look up table with window size of 7 days with SW_IN
.................34
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................648
Look up table with window size of 28 days with SW_IN VPD Tair
..........500
Look up table with window size of 35 days with SW_IN VPD Tair
.....297
Look up table with window size of 42 days with SW_IN VPD Tair
..102
Look up table with window size of 49 days with SW_IN VPD Tair
.64
Look up table with window size of 56 days with SW_IN VPD Tair
.28
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
8
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
49
Look up table with window size of 35 days with SW_IN
11
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
29
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
55
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..209
Look up table with window size of 14 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..234
Look up table with window size of 14 days with SW_IN VPD Tair
29
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...317
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...351
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
23
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....436
Look up table with window size of 14 days with SW_IN VPD Tair
28
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....475
Look up table with window size of 14 days with SW_IN VPD Tair
87
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......394
Look up table with window size of 14 days with SW_IN VPD Tair
..207
Look up table with window size of 7 days with SW_IN
52
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........582
Look up table with window size of 14 days with SW_IN VPD Tair
..229
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........496
Look up table with window size of 14 days with SW_IN VPD Tair
....438
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
26
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........442
Look up table with window size of 14 days with SW_IN VPD Tair
.......520
Look up table with window size of 7 days with SW_IN
..21
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.178
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............535
Look up table with window size of 14 days with SW_IN VPD Tair
........618
Look up table with window size of 7 days with SW_IN
..15
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..208
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
9
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................416
Look up table with window size of 14 days with SW_IN VPD Tair
............651
Look up table with window size of 7 days with SW_IN
......50
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....2
Mean diurnal course with window size of 2 days: .
.....2
Look up table with window size of 21 days with SW_IN VPD Tair
.....440
Look up table with window size of 28 days with SW_IN VPD Tair
.73
Look up table with window size of 35 days with SW_IN VPD Tair
23
Look up table with window size of 42 days with SW_IN VPD Tair
14
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................459
Look up table with window size of 14 days with SW_IN VPD Tair
...............552
Look up table with window size of 7 days with SW_IN
.........68
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........4
Look up table with window size of 21 days with SW_IN VPD Tair
.........580
Look up table with window size of 28 days with SW_IN VPD Tair
...144
Look up table with window size of 35 days with SW_IN VPD Tair
..102
Look up table with window size of 42 days with SW_IN VPD Tair
57
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
19
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................580
Look up table with window size of 14 days with SW_IN VPD Tair
..................667
Look up table with window size of 7 days with SW_IN
...........61
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........556
Look up table with window size of 28 days with SW_IN VPD Tair
.....490
Look up table with window size of 35 days with SW_IN VPD Tair
46
Look up table with window size of 42 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................521
Look up table with window size of 14 days with SW_IN VPD Tair
.......................570
Look up table with window size of 7 days with SW_IN
.................20
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................659
Look up table with window size of 28 days with SW_IN VPD Tair
...........557
Look up table with window size of 35 days with SW_IN VPD Tair
.....301
Look up table with window size of 42 days with SW_IN VPD Tair
..92
Look up table with window size of 49 days with SW_IN VPD Tair
.58
Look up table with window size of 56 days with SW_IN VPD Tair
.25
Look up table with window size of 63 days with SW_IN VPD Tair
7
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
9
Look up table with window size of 28 days with SW_IN
52
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..163
Look up table with window size of 14 days with SW_IN VPD Tair
33
Look up table with window size of 7 days with SW_IN
25
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..227
Look up table with window size of 14 days with SW_IN VPD Tair
39
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...295
Look up table with window size of 14 days with SW_IN VPD Tair
27
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...308
Look up table with window size of 14 days with SW_IN VPD Tair
74
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....318
Look up table with window size of 14 days with SW_IN VPD Tair
.103
Look up table with window size of 7 days with SW_IN
39
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....544
Look up table with window size of 14 days with SW_IN VPD Tair
18
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......323
Look up table with window size of 14 days with SW_IN VPD Tair
...105
Look up table with window size of 7 days with SW_IN
..237
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........436
Look up table with window size of 14 days with SW_IN VPD Tair
...352
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
14
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........508
Look up table with window size of 14 days with SW_IN VPD Tair
....350
Look up table with window size of 7 days with SW_IN
.60
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
47
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........470
Look up table with window size of 14 days with SW_IN VPD Tair
......486
Look up table with window size of 7 days with SW_IN
..86
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.106
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
7
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............435
Look up table with window size of 14 days with SW_IN VPD Tair
.........421
Look up table with window size of 7 days with SW_IN
.....100
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....324
Look up table with window size of 28 days with SW_IN VPD Tair
.81
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
33
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................353
Look up table with window size of 14 days with SW_IN VPD Tair
.............609
Look up table with window size of 7 days with SW_IN
.......68
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......529
Look up table with window size of 28 days with SW_IN VPD Tair
.73
Look up table with window size of 35 days with SW_IN VPD Tair
22
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
10
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................510
Look up table with window size of 14 days with SW_IN VPD Tair
..............558
Look up table with window size of 7 days with SW_IN
.........49
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........623
Look up table with window size of 28 days with SW_IN VPD Tair
..233
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
20
Look up table with window size of 49 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................376
Look up table with window size of 14 days with SW_IN VPD Tair
....................323
Look up table with window size of 7 days with SW_IN
.................164
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............8
Mean diurnal course with window size of 2 days: .
...............9
Look up table with window size of 21 days with SW_IN VPD Tair
...............460
Look up table with window size of 28 days with SW_IN VPD Tair
..........478
Look up table with window size of 35 days with SW_IN VPD Tair
.....196
Look up table with window size of 42 days with SW_IN VPD Tair
...280
Look up table with window size of 49 days with SW_IN VPD Tair
.98
Look up table with window size of 56 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................479
Look up table with window size of 14 days with SW_IN VPD Tair
........................577
Look up table with window size of 7 days with SW_IN
..................73
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................695
Look up table with window size of 28 days with SW_IN VPD Tair
..........415
Look up table with window size of 35 days with SW_IN VPD Tair
......388
Look up table with window size of 42 days with SW_IN VPD Tair
..135
Look up table with window size of 49 days with SW_IN VPD Tair
.30
Look up table with window size of 56 days with SW_IN VPD Tair
10
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
10
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
17
Look up table with window size of 56 days with SW_IN
31
Look up table with window size of 63 days with SW_IN
5
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
46
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.78
Look up table with window size of 14 days with SW_IN VPD Tair
22
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..187
Look up table with window size of 14 days with SW_IN VPD Tair
32
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...363
Look up table with window size of 14 days with SW_IN VPD Tair
25
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....348
Look up table with window size of 14 days with SW_IN VPD Tair
.109
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....448
Look up table with window size of 14 days with SW_IN VPD Tair
.96
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......384
Look up table with window size of 14 days with SW_IN VPD Tair
..249
Look up table with window size of 7 days with SW_IN
28
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
12
Look up table with window size of 28 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........374
Look up table with window size of 14 days with SW_IN VPD Tair
....366
Look up table with window size of 7 days with SW_IN
70
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........383
Look up table with window size of 14 days with SW_IN VPD Tair
.....374
Look up table with window size of 7 days with SW_IN
..135
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
80
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........522
Look up table with window size of 14 days with SW_IN VPD Tair
......517
Look up table with window size of 7 days with SW_IN
.24
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.102
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............474
Look up table with window size of 14 days with SW_IN VPD Tair
.........566
Look up table with window size of 7 days with SW_IN
...52
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...3
Look up table with window size of 21 days with SW_IN VPD Tair
...262
Look up table with window size of 28 days with SW_IN VPD Tair
28
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................380
Look up table with window size of 14 days with SW_IN VPD Tair
............500
Look up table with window size of 7 days with SW_IN
.......0
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......1
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......668
Look up table with window size of 28 days with SW_IN VPD Tair
.88
Look up table with window size of 35 days with SW_IN VPD Tair
29
Look up table with window size of 42 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................454
Look up table with window size of 14 days with SW_IN VPD Tair
...............432
Look up table with window size of 7 days with SW_IN
...........136
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........622
Look up table with window size of 28 days with SW_IN VPD Tair
...295
Look up table with window size of 35 days with SW_IN VPD Tair
35
Look up table with window size of 42 days with SW_IN VPD Tair
25
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................335
Look up table with window size of 14 days with SW_IN VPD Tair
....................668
Look up table with window size of 7 days with SW_IN
..............37
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............707
Look up table with window size of 28 days with SW_IN VPD Tair
......479
Look up table with window size of 35 days with SW_IN VPD Tair
.120
Look up table with window size of 42 days with SW_IN VPD Tair
42
Look up table with window size of 49 days with SW_IN VPD Tair
10
Look up table with window size of 56 days with SW_IN VPD Tair
6
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................513
Look up table with window size of 14 days with SW_IN VPD Tair
.......................542
Look up table with window size of 7 days with SW_IN
..................31
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................704
Look up table with window size of 28 days with SW_IN VPD Tair
..........778
Look up table with window size of 35 days with SW_IN VPD Tair
...311
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
25
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.166
Look up table with window size of 14 days with SW_IN VPD Tair
12
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...283
Look up table with window size of 14 days with SW_IN VPD Tair
28
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...377
Look up table with window size of 14 days with SW_IN VPD Tair
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....389
Look up table with window size of 14 days with SW_IN VPD Tair
72
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....480
Look up table with window size of 14 days with SW_IN VPD Tair
67
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
10
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......639
Look up table with window size of 14 days with SW_IN VPD Tair
37
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........592
Look up table with window size of 14 days with SW_IN VPD Tair
..201
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........590
Look up table with window size of 14 days with SW_IN VPD Tair
...351
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
25
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........600
Look up table with window size of 14 days with SW_IN VPD Tair
.....431
Look up table with window size of 7 days with SW_IN
.31
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.78
Look up table with window size of 28 days with SW_IN VPD Tair
13
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............523
Look up table with window size of 14 days with SW_IN VPD Tair
........692
Look up table with window size of 7 days with SW_IN
.13
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.170
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................439
Look up table with window size of 14 days with SW_IN VPD Tair
............374
Look up table with window size of 7 days with SW_IN
........177
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......376
Look up table with window size of 28 days with SW_IN VPD Tair
...232
Look up table with window size of 35 days with SW_IN VPD Tair
32
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
19
Look up table with window size of 21 days with SW_IN
24
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................373
Look up table with window size of 14 days with SW_IN VPD Tair
................371
Look up table with window size of 7 days with SW_IN
............157
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........702
Look up table with window size of 28 days with SW_IN VPD Tair
....279
Look up table with window size of 35 days with SW_IN VPD Tair
.87
Look up table with window size of 42 days with SW_IN VPD Tair
17
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
8
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................458
Look up table with window size of 14 days with SW_IN VPD Tair
...................747
Look up table with window size of 7 days with SW_IN
............38
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........1
Mean diurnal course with window size of 2 days: .
...........3
Look up table with window size of 21 days with SW_IN VPD Tair
...........410
Look up table with window size of 28 days with SW_IN VPD Tair
.......328
Look up table with window size of 35 days with SW_IN VPD Tair
....299
Look up table with window size of 42 days with SW_IN VPD Tair
.14
Look up table with window size of 49 days with SW_IN VPD Tair
.5
Look up table with window size of 56 days with SW_IN VPD Tair
.8
Look up table with window size of 63 days with SW_IN VPD Tair
41
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
30
Look up table with window size of 28 days with SW_IN
23
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................549
Look up table with window size of 14 days with SW_IN VPD Tair
.......................588
Look up table with window size of 7 days with SW_IN
.................46
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................463
Look up table with window size of 28 days with SW_IN VPD Tair
............661
Look up table with window size of 35 days with SW_IN VPD Tair
.....318
Look up table with window size of 42 days with SW_IN VPD Tair
..109
Look up table with window size of 49 days with SW_IN VPD Tair
.64
Look up table with window size of 56 days with SW_IN VPD Tair
21
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
14
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
18
Look up table with window size of 56 days with SW_IN
7
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
78
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..213
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..263
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...300
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...388
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....417
Look up table with window size of 14 days with SW_IN VPD Tair
22
Look up table with window size of 7 days with SW_IN
25
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....288
Look up table with window size of 14 days with SW_IN VPD Tair
..180
Look up table with window size of 7 days with SW_IN
75
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......434
Look up table with window size of 14 days with SW_IN VPD Tair
..206
Look up table with window size of 7 days with SW_IN
25
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........392
Look up table with window size of 14 days with SW_IN VPD Tair
....317
Look up table with window size of 7 days with SW_IN
.90
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........590
Look up table with window size of 14 days with SW_IN VPD Tair
...369
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........509
Look up table with window size of 14 days with SW_IN VPD Tair
......405
Look up table with window size of 7 days with SW_IN
..3
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..2
Mean diurnal course with window size of 2 days: .
..5
Look up table with window size of 21 days with SW_IN VPD Tair
..126
Look up table with window size of 28 days with SW_IN VPD Tair
.50
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
44
Look up table with window size of 21 days with SW_IN
15
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............447
Look up table with window size of 14 days with SW_IN VPD Tair
.........590
Look up table with window size of 7 days with SW_IN
...60
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...287
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................394
Look up table with window size of 14 days with SW_IN VPD Tair
............619
Look up table with window size of 7 days with SW_IN
......72
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....494
Look up table with window size of 28 days with SW_IN VPD Tair
60
Look up table with window size of 35 days with SW_IN VPD Tair
14
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
10
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................334
Look up table with window size of 14 days with SW_IN VPD Tair
................472
Look up table with window size of 7 days with SW_IN
............87
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........341
Look up table with window size of 28 days with SW_IN VPD Tair
.......520
Look up table with window size of 35 days with SW_IN VPD Tair
..241
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................244
Look up table with window size of 14 days with SW_IN VPD Tair
.....................801
Look up table with window size of 7 days with SW_IN
.............98
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............645
Look up table with window size of 28 days with SW_IN VPD Tair
......460
Look up table with window size of 35 days with SW_IN VPD Tair
.119
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
23
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................472
Look up table with window size of 14 days with SW_IN VPD Tair
........................642
Look up table with window size of 7 days with SW_IN
.................42
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................607
Look up table with window size of 28 days with SW_IN VPD Tair
...........637
Look up table with window size of 35 days with SW_IN VPD Tair
....305
Look up table with window size of 42 days with SW_IN VPD Tair
.63
Look up table with window size of 49 days with SW_IN VPD Tair
.29
Look up table with window size of 56 days with SW_IN VPD Tair
22
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
20
Look up table with window size of 21 days with SW_IN
11
Look up table with window size of 28 days with SW_IN
18
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
4
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.165
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...255
Look up table with window size of 14 days with SW_IN VPD Tair
62
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...364
Look up table with window size of 14 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....444
Look up table with window size of 14 days with SW_IN VPD Tair
19
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....495
Look up table with window size of 14 days with SW_IN VPD Tair
50
Look up table with window size of 7 days with SW_IN
15
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......543
Look up table with window size of 14 days with SW_IN VPD Tair
.115
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........412
Look up table with window size of 14 days with SW_IN VPD Tair
...334
Look up table with window size of 7 days with SW_IN
49
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........384
Look up table with window size of 14 days with SW_IN VPD Tair
.....305
Look up table with window size of 7 days with SW_IN
..106
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.97
Look up table with window size of 28 days with SW_IN VPD Tair
72
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........409
Look up table with window size of 14 days with SW_IN VPD Tair
.......519
Look up table with window size of 7 days with SW_IN
..133
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.95
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............610
Look up table with window size of 14 days with SW_IN VPD Tair
.......361
Look up table with window size of 7 days with SW_IN
....5
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....393
Look up table with window size of 28 days with SW_IN VPD Tair
29
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................612
Look up table with window size of 14 days with SW_IN VPD Tair
..........600
Look up table with window size of 7 days with SW_IN
....0
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....2
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....299
Look up table with window size of 28 days with SW_IN VPD Tair
.53
Look up table with window size of 35 days with SW_IN VPD Tair
.81
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
10
Look up table with window size of 21 days with SW_IN
11
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................411
Look up table with window size of 14 days with SW_IN VPD Tair
...............445
Look up table with window size of 7 days with SW_IN
...........36
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........1
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........600
Look up table with window size of 28 days with SW_IN VPD Tair
.....350
Look up table with window size of 35 days with SW_IN VPD Tair
.116
Look up table with window size of 42 days with SW_IN VPD Tair
25
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
9
Look up table with window size of 21 days with SW_IN
8
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
5
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................291
Look up table with window size of 14 days with SW_IN VPD Tair
.....................716
Look up table with window size of 7 days with SW_IN
.............103
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............1
Look up table with window size of 21 days with SW_IN VPD Tair
............575
Look up table with window size of 28 days with SW_IN VPD Tair
.......567
Look up table with window size of 35 days with SW_IN VPD Tair
.66
Look up table with window size of 42 days with SW_IN VPD Tair
30
Look up table with window size of 49 days with SW_IN VPD Tair
28
Look up table with window size of 56 days with SW_IN VPD Tair
19
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
6
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................492
Look up table with window size of 14 days with SW_IN VPD Tair
.......................511
Look up table with window size of 7 days with SW_IN
..................120
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................599
Look up table with window size of 28 days with SW_IN VPD Tair
...........629
Look up table with window size of 35 days with SW_IN VPD Tair
.....284
Look up table with window size of 42 days with SW_IN VPD Tair
..100
Look up table with window size of 49 days with SW_IN VPD Tair
.5
Look up table with window size of 56 days with SW_IN VPD Tair
.92
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
16
Look up table with window size of 49 days with SW_IN
24
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
15
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
31
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.115
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.170
Look up table with window size of 14 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..199
Look up table with window size of 14 days with SW_IN VPD Tair
15
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...316
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...356
Look up table with window size of 14 days with SW_IN VPD Tair
30
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....362
Look up table with window size of 14 days with SW_IN VPD Tair
.40
Look up table with window size of 7 days with SW_IN
66
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....407
Look up table with window size of 14 days with SW_IN VPD Tair
.124
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
24
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......486
Look up table with window size of 14 days with SW_IN VPD Tair
.145
Look up table with window size of 7 days with SW_IN
41
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........605
Look up table with window size of 14 days with SW_IN VPD Tair
..202
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........560
Look up table with window size of 14 days with SW_IN VPD Tair
....363
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
36
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........561
Look up table with window size of 14 days with SW_IN VPD Tair
......525
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
58
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............515
Look up table with window size of 14 days with SW_IN VPD Tair
........607
Look up table with window size of 7 days with SW_IN
..2
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..4
Look up table with window size of 21 days with SW_IN VPD Tair
..187
Look up table with window size of 28 days with SW_IN VPD Tair
75
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................267
Look up table with window size of 14 days with SW_IN VPD Tair
..............587
Look up table with window size of 7 days with SW_IN
........218
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......441
Look up table with window size of 28 days with SW_IN VPD Tair
.112
Look up table with window size of 35 days with SW_IN VPD Tair
37
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................505
Look up table with window size of 14 days with SW_IN VPD Tair
...............597
Look up table with window size of 7 days with SW_IN
.........34
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........1
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........584
Look up table with window size of 28 days with SW_IN VPD Tair
..208
Look up table with window size of 35 days with SW_IN VPD Tair
44
Look up table with window size of 42 days with SW_IN VPD Tair
25
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................451
Look up table with window size of 14 days with SW_IN VPD Tair
...................636
Look up table with window size of 7 days with SW_IN
.............28
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............1
Look up table with window size of 21 days with SW_IN VPD Tair
............627
Look up table with window size of 28 days with SW_IN VPD Tair
......543
Look up table with window size of 35 days with SW_IN VPD Tair
.78
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
11
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
9
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
8
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................522
Look up table with window size of 14 days with SW_IN VPD Tair
.......................568
Look up table with window size of 7 days with SW_IN
.................32
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................633
Look up table with window size of 28 days with SW_IN VPD Tair
...........560
Look up table with window size of 35 days with SW_IN VPD Tair
.....290
Look up table with window size of 42 days with SW_IN VPD Tair
..98
Look up table with window size of 49 days with SW_IN VPD Tair
.54
Look up table with window size of 56 days with SW_IN VPD Tair
.39
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
7
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
12
Look up table with window size of 28 days with SW_IN
10
Look up table with window size of 35 days with SW_IN
42
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
79
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..250
Look up table with window size of 14 days with SW_IN VPD Tair
16
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...252
Look up table with window size of 14 days with SW_IN VPD Tair
59
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...356
Look up table with window size of 14 days with SW_IN VPD Tair
16
Look up table with window size of 7 days with SW_IN
16
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....422
Look up table with window size of 14 days with SW_IN VPD Tair
33
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....363
Look up table with window size of 14 days with SW_IN VPD Tair
.183
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......387
Look up table with window size of 14 days with SW_IN VPD Tair
..172
Look up table with window size of 7 days with SW_IN
.68
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
40
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........505
Look up table with window size of 14 days with SW_IN VPD Tair
...288
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........483
Look up table with window size of 14 days with SW_IN VPD Tair
....445
Look up table with window size of 7 days with SW_IN
44
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........428
Look up table with window size of 14 days with SW_IN VPD Tair
.......609
Look up table with window size of 7 days with SW_IN
.19
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.4
Mean diurnal course with window size of 2 days: .
.5
Look up table with window size of 21 days with SW_IN VPD Tair
.88
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............562
Look up table with window size of 14 days with SW_IN VPD Tair
........405
Look up table with window size of 7 days with SW_IN
....27
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....268
Look up table with window size of 28 days with SW_IN VPD Tair
.89
Look up table with window size of 35 days with SW_IN VPD Tair
26
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................488
Look up table with window size of 14 days with SW_IN VPD Tair
...........707
Look up table with window size of 7 days with SW_IN
....49
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....344
Look up table with window size of 28 days with SW_IN VPD Tair
8
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
10
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
70
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................511
Look up table with window size of 14 days with SW_IN VPD Tair
..............491
Look up table with window size of 7 days with SW_IN
..........10
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........482
Look up table with window size of 28 days with SW_IN VPD Tair
.....480
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................542
Look up table with window size of 14 days with SW_IN VPD Tair
..................675
Look up table with window size of 7 days with SW_IN
...........23
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........559
Look up table with window size of 28 days with SW_IN VPD Tair
......395
Look up table with window size of 35 days with SW_IN VPD Tair
..174
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
8
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................312
Look up table with window size of 14 days with SW_IN VPD Tair
.........................597
Look up table with window size of 7 days with SW_IN
...................39
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................454
Look up table with window size of 28 days with SW_IN VPD Tair
..............637
Look up table with window size of 35 days with SW_IN VPD Tair
........507
Look up table with window size of 42 days with SW_IN VPD Tair
...79
Look up table with window size of 49 days with SW_IN VPD Tair
..79
Look up table with window size of 56 days with SW_IN VPD Tair
.23
Look up table with window size of 63 days with SW_IN VPD Tair
.95
Look up table with window size of 70 days with SW_IN VPD Tair
25
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
25
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
2
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
22
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
46
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.98
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.138
Look up table with window size of 14 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..213
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..265
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...226
Look up table with window size of 14 days with SW_IN VPD Tair
90
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...384
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....315
Look up table with window size of 14 days with SW_IN VPD Tair
.129
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
11
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....527
Look up table with window size of 14 days with SW_IN VPD Tair
30
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......568
Look up table with window size of 14 days with SW_IN VPD Tair
.77
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
16
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........564
Look up table with window size of 14 days with SW_IN VPD Tair
..224
Look up table with window size of 7 days with SW_IN
17
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........548
Look up table with window size of 14 days with SW_IN VPD Tair
....392
Look up table with window size of 7 days with SW_IN
26
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........485
Look up table with window size of 14 days with SW_IN VPD Tair
......425
Look up table with window size of 7 days with SW_IN
..20
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..100
Look up table with window size of 28 days with SW_IN VPD Tair
.1
Look up table with window size of 35 days with SW_IN VPD Tair
.0
Look up table with window size of 42 days with SW_IN VPD Tair
.13
Look up table with window size of 49 days with SW_IN VPD Tair
.7
Look up table with window size of 56 days with SW_IN VPD Tair
.0
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.116
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............546
Look up table with window size of 14 days with SW_IN VPD Tair
........207
Look up table with window size of 7 days with SW_IN
......82
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....278
Look up table with window size of 28 days with SW_IN VPD Tair
..185
Look up table with window size of 35 days with SW_IN VPD Tair
.56
Look up table with window size of 42 days with SW_IN VPD Tair
41
Look up table with window size of 49 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................503
Look up table with window size of 14 days with SW_IN VPD Tair
...........693
Look up table with window size of 7 days with SW_IN
....15
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....427
Look up table with window size of 28 days with SW_IN VPD Tair
19
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
5
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................432
Look up table with window size of 14 days with SW_IN VPD Tair
...............611
Look up table with window size of 7 days with SW_IN
.........30
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........647
Look up table with window size of 28 days with SW_IN VPD Tair
..246
Look up table with window size of 35 days with SW_IN VPD Tair
17
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................521
Look up table with window size of 14 days with SW_IN VPD Tair
..................587
Look up table with window size of 7 days with SW_IN
............29
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............505
Look up table with window size of 28 days with SW_IN VPD Tair
.......579
Look up table with window size of 35 days with SW_IN VPD Tair
.142
Look up table with window size of 42 days with SW_IN VPD Tair
15
Look up table with window size of 49 days with SW_IN VPD Tair
13
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................482
Look up table with window size of 14 days with SW_IN VPD Tair
.......................691
Look up table with window size of 7 days with SW_IN
.................25
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................431
Look up table with window size of 28 days with SW_IN VPD Tair
............637
Look up table with window size of 35 days with SW_IN VPD Tair
......506
Look up table with window size of 42 days with SW_IN VPD Tair
.72
Look up table with window size of 49 days with SW_IN VPD Tair
18
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
7
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
21
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
75
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.149
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.159
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
22
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...287
Look up table with window size of 14 days with SW_IN VPD Tair
30
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...359
Look up table with window size of 14 days with SW_IN VPD Tair
29
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....433
Look up table with window size of 14 days with SW_IN VPD Tair
35
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....461
Look up table with window size of 14 days with SW_IN VPD Tair
.94
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......410
Look up table with window size of 14 days with SW_IN VPD Tair
..230
Look up table with window size of 7 days with SW_IN
36
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........533
Look up table with window size of 14 days with SW_IN VPD Tair
..247
Look up table with window size of 7 days with SW_IN
27
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........593
Look up table with window size of 14 days with SW_IN VPD Tair
...364
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........522
Look up table with window size of 14 days with SW_IN VPD Tair
......520
Look up table with window size of 7 days with SW_IN
.12
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.109
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............514
Look up table with window size of 14 days with SW_IN VPD Tair
........565
Look up table with window size of 7 days with SW_IN
...16
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...266
Look up table with window size of 28 days with SW_IN VPD Tair
31
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................294
Look up table with window size of 14 days with SW_IN VPD Tair
.............614
Look up table with window size of 7 days with SW_IN
.......113
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......317
Look up table with window size of 28 days with SW_IN VPD Tair
...333
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................525
Look up table with window size of 14 days with SW_IN VPD Tair
..............616
Look up table with window size of 7 days with SW_IN
........11
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........1
Look up table with window size of 21 days with SW_IN VPD Tair
........627
Look up table with window size of 28 days with SW_IN VPD Tair
..203
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
16
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................537
Look up table with window size of 14 days with SW_IN VPD Tair
..................590
Look up table with window size of 7 days with SW_IN
............70
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............668
Look up table with window size of 28 days with SW_IN VPD Tair
.....405
Look up table with window size of 35 days with SW_IN VPD Tair
.99
Look up table with window size of 42 days with SW_IN VPD Tair
34
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................521
Look up table with window size of 14 days with SW_IN VPD Tair
.......................433
Look up table with window size of 7 days with SW_IN
...................11
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................490
Look up table with window size of 28 days with SW_IN VPD Tair
..............579
Look up table with window size of 35 days with SW_IN VPD Tair
........358
Look up table with window size of 42 days with SW_IN VPD Tair
....225
Look up table with window size of 49 days with SW_IN VPD Tair
..125
Look up table with window size of 56 days with SW_IN VPD Tair
.69
Look up table with window size of 63 days with SW_IN VPD Tair
15
Look up table with window size of 70 days with SW_IN VPD Tair
6
Look up table with window size of 14 days with SW_IN
23
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
13
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'P' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.92
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..166
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
54
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..253
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...321
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...385
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....419
Look up table with window size of 14 days with SW_IN VPD Tair
31
Look up table with window size of 7 days with SW_IN
15
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....525
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
20
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......296
Look up table with window size of 14 days with SW_IN VPD Tair
...290
Look up table with window size of 7 days with SW_IN
59
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
23
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........415
Look up table with window size of 14 days with SW_IN VPD Tair
...349
Look up table with window size of 7 days with SW_IN
42
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........372
Look up table with window size of 14 days with SW_IN VPD Tair
......343
Look up table with window size of 7 days with SW_IN
..107
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.129
Look up table with window size of 28 days with SW_IN VPD Tair
6
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
14
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........509
Look up table with window size of 14 days with SW_IN VPD Tair
......503
Look up table with window size of 7 days with SW_IN
.72
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
65
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............489
Look up table with window size of 14 days with SW_IN VPD Tair
.........469
Look up table with window size of 7 days with SW_IN
....53
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...302
Look up table with window size of 28 days with SW_IN VPD Tair
75
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................435
Look up table with window size of 14 days with SW_IN VPD Tair
............487
Look up table with window size of 7 days with SW_IN
.......72
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......4
Look up table with window size of 21 days with SW_IN VPD Tair
......420
Look up table with window size of 28 days with SW_IN VPD Tair
..195
Look up table with window size of 35 days with SW_IN VPD Tair
50
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................549
Look up table with window size of 14 days with SW_IN VPD Tair
..............590
Look up table with window size of 7 days with SW_IN
........0
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........533
Look up table with window size of 28 days with SW_IN VPD Tair
...204
Look up table with window size of 35 days with SW_IN VPD Tair
.117
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
3
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................519
Look up table with window size of 14 days with SW_IN VPD Tair
..................439
Look up table with window size of 7 days with SW_IN
..............29
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............650
Look up table with window size of 28 days with SW_IN VPD Tair
.......588
Look up table with window size of 35 days with SW_IN VPD Tair
.44
Look up table with window size of 42 days with SW_IN VPD Tair
.24
Look up table with window size of 49 days with SW_IN VPD Tair
.27
Look up table with window size of 56 days with SW_IN VPD Tair
15
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
46
Look up table with window size of 21 days with SW_IN
20
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................573
Look up table with window size of 14 days with SW_IN VPD Tair
.......................577
Look up table with window size of 7 days with SW_IN
.................28
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................658
Look up table with window size of 28 days with SW_IN VPD Tair
..........701
Look up table with window size of 35 days with SW_IN VPD Tair
...277
Look up table with window size of 42 days with SW_IN VPD Tair
64
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
29
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..204
Look up table with window size of 14 days with SW_IN VPD Tair
63
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...280
Look up table with window size of 14 days with SW_IN VPD Tair
34
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...378
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....350
Look up table with window size of 14 days with SW_IN VPD Tair
.108
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....293
Look up table with window size of 14 days with SW_IN VPD Tair
..262
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......386
Look up table with window size of 14 days with SW_IN VPD Tair
..284
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........462
Look up table with window size of 14 days with SW_IN VPD Tair
...318
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
21
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........488
Look up table with window size of 14 days with SW_IN VPD Tair
....403
Look up table with window size of 7 days with SW_IN
42
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
37
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........467
Look up table with window size of 14 days with SW_IN VPD Tair
.......557
Look up table with window size of 7 days with SW_IN
.34
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.74
Look up table with window size of 28 days with SW_IN VPD Tair
8
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
16
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
10
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............510
Look up table with window size of 14 days with SW_IN VPD Tair
........603
Look up table with window size of 7 days with SW_IN
..2
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..1
Look up table with window size of 21 days with SW_IN VPD Tair
..267
Look up table with window size of 28 days with SW_IN VPD Tair
6
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................547
Look up table with window size of 14 days with SW_IN VPD Tair
...........507
Look up table with window size of 7 days with SW_IN
......39
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....393
Look up table with window size of 28 days with SW_IN VPD Tair
.170
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................353
Look up table with window size of 14 days with SW_IN VPD Tair
................509
Look up table with window size of 7 days with SW_IN
...........101
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........698
Look up table with window size of 28 days with SW_IN VPD Tair
...266
Look up table with window size of 35 days with SW_IN VPD Tair
51
Look up table with window size of 42 days with SW_IN VPD Tair
21
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
9
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................358
Look up table with window size of 14 days with SW_IN VPD Tair
....................639
Look up table with window size of 7 days with SW_IN
..............187
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............611
Look up table with window size of 28 days with SW_IN VPD Tair
......434
Look up table with window size of 35 days with SW_IN VPD Tair
.82
Look up table with window size of 42 days with SW_IN VPD Tair
23
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
11
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
11
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
13
Look up table with window size of 42 days with SW_IN
13
Look up table with window size of 49 days with SW_IN
4
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................294
Look up table with window size of 14 days with SW_IN VPD Tair
.........................582
Look up table with window size of 7 days with SW_IN
....................54
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................1
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................511
Look up table with window size of 28 days with SW_IN VPD Tair
..............614
Look up table with window size of 35 days with SW_IN VPD Tair
........483
Look up table with window size of 42 days with SW_IN VPD Tair
...181
Look up table with window size of 49 days with SW_IN VPD Tair
.88
Look up table with window size of 56 days with SW_IN VPD Tair
23
Look up table with window size of 63 days with SW_IN VPD Tair
10
Look up table with window size of 70 days with SW_IN VPD Tair
8
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
17
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
5
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
16
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
21
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Look up table with window size of 14 days with SW_IN VPD Tair
21
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..181
Look up table with window size of 14 days with SW_IN VPD Tair
30
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...319
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...226
Look up table with window size of 14 days with SW_IN VPD Tair
.156
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....417
Look up table with window size of 14 days with SW_IN VPD Tair
33
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....464
Look up table with window size of 14 days with SW_IN VPD Tair
98
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......612
Look up table with window size of 14 days with SW_IN VPD Tair
55
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........479
Look up table with window size of 14 days with SW_IN VPD Tair
...271
Look up table with window size of 7 days with SW_IN
45
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
16
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........432
Look up table with window size of 14 days with SW_IN VPD Tair
.....296
Look up table with window size of 7 days with SW_IN
..182
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
9
Look up table with window size of 28 days with SW_IN VPD Tair
39
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
15
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........519
Look up table with window size of 14 days with SW_IN VPD Tair
......581
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
58
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............523
Look up table with window size of 14 days with SW_IN VPD Tair
........649
Look up table with window size of 7 days with SW_IN
..42
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.160
Look up table with window size of 28 days with SW_IN VPD Tair
18
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................448
Look up table with window size of 14 days with SW_IN VPD Tair
............479
Look up table with window size of 7 days with SW_IN
.......147
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......461
Look up table with window size of 28 days with SW_IN VPD Tair
.53
Look up table with window size of 35 days with SW_IN VPD Tair
32
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
16
Look up table with window size of 28 days with SW_IN
24
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................333
Look up table with window size of 14 days with SW_IN VPD Tair
................446
Look up table with window size of 7 days with SW_IN
............67
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........665
Look up table with window size of 28 days with SW_IN VPD Tair
....477
Look up table with window size of 35 days with SW_IN VPD Tair
14
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................509
Look up table with window size of 14 days with SW_IN VPD Tair
..................332
Look up table with window size of 7 days with SW_IN
...............82
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............510
Look up table with window size of 28 days with SW_IN VPD Tair
.........655
Look up table with window size of 35 days with SW_IN VPD Tair
...171
Look up table with window size of 42 days with SW_IN VPD Tair
.106
Look up table with window size of 49 days with SW_IN VPD Tair
21
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
4
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................479
Look up table with window size of 14 days with SW_IN VPD Tair
........................680
Look up table with window size of 7 days with SW_IN
.................65
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................414
Look up table with window size of 28 days with SW_IN VPD Tair
............663
Look up table with window size of 35 days with SW_IN VPD Tair
.....316
Look up table with window size of 42 days with SW_IN VPD Tair
..25
Look up table with window size of 49 days with SW_IN VPD Tair
..23
Look up table with window size of 56 days with SW_IN VPD Tair
..5
Look up table with window size of 63 days with SW_IN VPD Tair
..1
Look up table with window size of 70 days with SW_IN VPD Tair
..10
Look up table with window size of 14 days with SW_IN
.46
Look up table with window size of 21 days with SW_IN
.148
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'P' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
21
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.115
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..217
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..187
Look up table with window size of 14 days with SW_IN VPD Tair
66
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...317
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...364
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....468
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....522
Look up table with window size of 14 days with SW_IN VPD Tair
37
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......416
Look up table with window size of 14 days with SW_IN VPD Tair
..259
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........427
Look up table with window size of 14 days with SW_IN VPD Tair
...265
Look up table with window size of 7 days with SW_IN
.62
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
7
Look up table with window size of 21 days with SW_IN VPD Tair
14
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
29
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........514
Look up table with window size of 14 days with SW_IN VPD Tair
....395
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
59
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........390
Look up table with window size of 14 days with SW_IN VPD Tair
.......528
Look up table with window size of 7 days with SW_IN
..141
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.81
Look up table with window size of 28 days with SW_IN VPD Tair
19
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............385
Look up table with window size of 14 days with SW_IN VPD Tair
..........256
Look up table with window size of 7 days with SW_IN
.......163
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....335
Look up table with window size of 28 days with SW_IN VPD Tair
..182
Look up table with window size of 35 days with SW_IN VPD Tair
20
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
17
Look up table with window size of 21 days with SW_IN
22
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................502
Look up table with window size of 14 days with SW_IN VPD Tair
...........616
Look up table with window size of 7 days with SW_IN
.....8
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....470
Look up table with window size of 28 days with SW_IN VPD Tair
41
Look up table with window size of 35 days with SW_IN VPD Tair
17
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................478
Look up table with window size of 14 days with SW_IN VPD Tair
...............754
Look up table with window size of 7 days with SW_IN
.......2
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......310
Look up table with window size of 28 days with SW_IN VPD Tair
....313
Look up table with window size of 35 days with SW_IN VPD Tair
.147
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................490
Look up table with window size of 14 days with SW_IN VPD Tair
...................475
Look up table with window size of 7 days with SW_IN
..............41
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............462
Look up table with window size of 28 days with SW_IN VPD Tair
.........709
Look up table with window size of 35 days with SW_IN VPD Tair
..228
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................451
Look up table with window size of 14 days with SW_IN VPD Tair
........................748
Look up table with window size of 7 days with SW_IN
................26
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................450
Look up table with window size of 28 days with SW_IN VPD Tair
............616
Look up table with window size of 35 days with SW_IN VPD Tair
.....521
Look up table with window size of 42 days with SW_IN VPD Tair
33
Look up table with window size of 49 days with SW_IN VPD Tair
26
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
79
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.83
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.106
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.139
Look up table with window size of 14 days with SW_IN VPD Tair
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..257
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...292
Look up table with window size of 14 days with SW_IN VPD Tair
24
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...360
Look up table with window size of 14 days with SW_IN VPD Tair
20
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....351
Look up table with window size of 14 days with SW_IN VPD Tair
.111
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....457
Look up table with window size of 14 days with SW_IN VPD Tair
.105
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......534
Look up table with window size of 14 days with SW_IN VPD Tair
.129
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........521
Look up table with window size of 14 days with SW_IN VPD Tair
..258
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
21
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........314
Look up table with window size of 14 days with SW_IN VPD Tair
......426
Look up table with window size of 7 days with SW_IN
..128
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.98
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........433
Look up table with window size of 14 days with SW_IN VPD Tair
.......542
Look up table with window size of 7 days with SW_IN
.104
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
82
Look up table with window size of 28 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............518
Look up table with window size of 14 days with SW_IN VPD Tair
........436
Look up table with window size of 7 days with SW_IN
....85
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...152
Look up table with window size of 28 days with SW_IN VPD Tair
..114
Look up table with window size of 35 days with SW_IN VPD Tair
73
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
15
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................505
Look up table with window size of 14 days with SW_IN VPD Tair
...........485
Look up table with window size of 7 days with SW_IN
......15
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......594
Look up table with window size of 28 days with SW_IN VPD Tair
64
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................288
Look up table with window size of 14 days with SW_IN VPD Tair
.................500
Look up table with window size of 7 days with SW_IN
............220
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........571
Look up table with window size of 28 days with SW_IN VPD Tair
....280
Look up table with window size of 35 days with SW_IN VPD Tair
.55
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
16
Look up table with window size of 56 days with SW_IN VPD Tair
16
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
6
Look up table with window size of 14 days with SW_IN
25
Look up table with window size of 21 days with SW_IN
10
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................311
Look up table with window size of 14 days with SW_IN VPD Tair
....................422
Look up table with window size of 7 days with SW_IN
................148
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............0
Mean diurnal course with window size of 2 days: .
...............0
Look up table with window size of 21 days with SW_IN VPD Tair
...............357
Look up table with window size of 28 days with SW_IN VPD Tair
...........615
Look up table with window size of 35 days with SW_IN VPD Tair
.....511
Look up table with window size of 42 days with SW_IN VPD Tair
20
Look up table with window size of 49 days with SW_IN VPD Tair
19
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................470
Look up table with window size of 14 days with SW_IN VPD Tair
........................626
Look up table with window size of 7 days with SW_IN
.................90
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................473
Look up table with window size of 28 days with SW_IN VPD Tair
............615
Look up table with window size of 35 days with SW_IN VPD Tair
......441
Look up table with window size of 42 days with SW_IN VPD Tair
.117
Look up table with window size of 49 days with SW_IN VPD Tair
9
Look up table with window size of 56 days with SW_IN VPD Tair
10
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
12
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
4
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.83
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
16
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.120
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.180
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..205
Look up table with window size of 14 days with SW_IN VPD Tair
15
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..249
Look up table with window size of 14 days with SW_IN VPD Tair
18
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...272
Look up table with window size of 14 days with SW_IN VPD Tair
44
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...363
Look up table with window size of 14 days with SW_IN VPD Tair
21
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....434
Look up table with window size of 14 days with SW_IN VPD Tair
34
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....413
Look up table with window size of 14 days with SW_IN VPD Tair
.149
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......423
Look up table with window size of 14 days with SW_IN VPD Tair
..225
Look up table with window size of 7 days with SW_IN
22
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........460
Look up table with window size of 14 days with SW_IN VPD Tair
...318
Look up table with window size of 7 days with SW_IN
15
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
18
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........485
Look up table with window size of 14 days with SW_IN VPD Tair
....249
Look up table with window size of 7 days with SW_IN
..101
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.55
Look up table with window size of 28 days with SW_IN VPD Tair
79
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........506
Look up table with window size of 14 days with SW_IN VPD Tair
......510
Look up table with window size of 7 days with SW_IN
.59
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
88
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............447
Look up table with window size of 14 days with SW_IN VPD Tair
.........541
Look up table with window size of 7 days with SW_IN
....17
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...391
Look up table with window size of 28 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................499
Look up table with window size of 14 days with SW_IN VPD Tair
...........619
Look up table with window size of 7 days with SW_IN
.....34
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....425
Look up table with window size of 28 days with SW_IN VPD Tair
85
Look up table with window size of 35 days with SW_IN VPD Tair
12
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................469
Look up table with window size of 14 days with SW_IN VPD Tair
...............292
Look up table with window size of 7 days with SW_IN
............178
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........4
Look up table with window size of 21 days with SW_IN VPD Tair
..........313
Look up table with window size of 28 days with SW_IN VPD Tair
.......225
Look up table with window size of 35 days with SW_IN VPD Tair
.....286
Look up table with window size of 42 days with SW_IN VPD Tair
..54
Look up table with window size of 49 days with SW_IN VPD Tair
.12
Look up table with window size of 56 days with SW_IN VPD Tair
.0
Look up table with window size of 63 days with SW_IN VPD Tair
.7
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.73
Look up table with window size of 21 days with SW_IN
81
Look up table with window size of 28 days with SW_IN
7
Look up table with window size of 35 days with SW_IN
7
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................521
Look up table with window size of 14 days with SW_IN VPD Tair
..................691
Look up table with window size of 7 days with SW_IN
...........11
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........356
Look up table with window size of 28 days with SW_IN VPD Tair
........468
Look up table with window size of 35 days with SW_IN VPD Tair
...259
Look up table with window size of 42 days with SW_IN VPD Tair
67
Look up table with window size of 49 days with SW_IN VPD Tair
22
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
7
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................610
Look up table with window size of 14 days with SW_IN VPD Tair
......................520
Look up table with window size of 7 days with SW_IN
.................6
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................529
Look up table with window size of 28 days with SW_IN VPD Tair
............664
Look up table with window size of 35 days with SW_IN VPD Tair
.....285
Look up table with window size of 42 days with SW_IN VPD Tair
..93
Look up table with window size of 49 days with SW_IN VPD Tair
.47
Look up table with window size of 56 days with SW_IN VPD Tair
.38
Look up table with window size of 63 days with SW_IN VPD Tair
11
Look up table with window size of 70 days with SW_IN VPD Tair
8
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
12
Look up table with window size of 28 days with SW_IN
22
Look up table with window size of 35 days with SW_IN
26
Look up table with window size of 42 days with SW_IN
4
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
47
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
75
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.85
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.119
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.146
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..200
Look up table with window size of 14 days with SW_IN VPD Tair
19
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..263
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...271
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
50
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...366
Look up table with window size of 14 days with SW_IN VPD Tair
18
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....314
Look up table with window size of 14 days with SW_IN VPD Tair
.153
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....555
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......522
Look up table with window size of 14 days with SW_IN VPD Tair
.154
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........450
Look up table with window size of 14 days with SW_IN VPD Tair
...327
Look up table with window size of 7 days with SW_IN
13
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
18
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........475
Look up table with window size of 14 days with SW_IN VPD Tair
....276
Look up table with window size of 7 days with SW_IN
..135
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
67
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........387
Look up table with window size of 14 days with SW_IN VPD Tair
.......471
Look up table with window size of 7 days with SW_IN
...33
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..211
Look up table with window size of 28 days with SW_IN VPD Tair
42
Look up table with window size of 35 days with SW_IN VPD Tair
21
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............489
Look up table with window size of 14 days with SW_IN VPD Tair
.........473
Look up table with window size of 7 days with SW_IN
....12
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....391
Look up table with window size of 28 days with SW_IN VPD Tair
32
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................232
Look up table with window size of 14 days with SW_IN VPD Tair
..............719
Look up table with window size of 7 days with SW_IN
.......189
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....472
Look up table with window size of 28 days with SW_IN VPD Tair
60
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................472
Look up table with window size of 14 days with SW_IN VPD Tair
...............538
Look up table with window size of 7 days with SW_IN
.........65
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........665
Look up table with window size of 28 days with SW_IN VPD Tair
..250
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................501
Look up table with window size of 14 days with SW_IN VPD Tair
...................268
Look up table with window size of 7 days with SW_IN
................87
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............0
Mean diurnal course with window size of 2 days: .
...............0
Look up table with window size of 21 days with SW_IN VPD Tair
...............679
Look up table with window size of 28 days with SW_IN VPD Tair
........792
Look up table with window size of 35 days with SW_IN VPD Tair
28
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
8
Look up table with window size of 56 days with SW_IN VPD Tair
16
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................470
Look up table with window size of 14 days with SW_IN VPD Tair
........................656
Look up table with window size of 7 days with SW_IN
.................64
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................1
Look up table with window size of 21 days with SW_IN VPD Tair
................576
Look up table with window size of 28 days with SW_IN VPD Tair
...........447
Look up table with window size of 35 days with SW_IN VPD Tair
......351
Look up table with window size of 42 days with SW_IN VPD Tair
...182
Look up table with window size of 49 days with SW_IN VPD Tair
.57
Look up table with window size of 56 days with SW_IN VPD Tair
43
Look up table with window size of 63 days with SW_IN VPD Tair
15
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
15
Look up table with window size of 56 days with SW_IN
2
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
16
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
23
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
39
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.174
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..177
Look up table with window size of 14 days with SW_IN VPD Tair
77
Look up table with window size of 7 days with SW_IN
13
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...331
Look up table with window size of 14 days with SW_IN VPD Tair
57
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....352
Look up table with window size of 14 days with SW_IN VPD Tair
.108
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....466
Look up table with window size of 14 days with SW_IN VPD Tair
95
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......444
Look up table with window size of 14 days with SW_IN VPD Tair
..130
Look up table with window size of 7 days with SW_IN
.83
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
6
Look up table with window size of 35 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........513
Look up table with window size of 14 days with SW_IN VPD Tair
..294
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........297
Look up table with window size of 14 days with SW_IN VPD Tair
......548
Look up table with window size of 7 days with SW_IN
.63
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
63
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........540
Look up table with window size of 14 days with SW_IN VPD Tair
......558
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
57
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............525
Look up table with window size of 14 days with SW_IN VPD Tair
........681
Look up table with window size of 7 days with SW_IN
.9
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.140
Look up table with window size of 28 days with SW_IN VPD Tair
44
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................427
Look up table with window size of 14 days with SW_IN VPD Tair
............461
Look up table with window size of 7 days with SW_IN
.......74
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......532
Look up table with window size of 28 days with SW_IN VPD Tair
.104
Look up table with window size of 35 days with SW_IN VPD Tair
69
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................465
Look up table with window size of 14 days with SW_IN VPD Tair
...............491
Look up table with window size of 7 days with SW_IN
..........28
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........481
Look up table with window size of 28 days with SW_IN VPD Tair
.....271
Look up table with window size of 35 days with SW_IN VPD Tair
..151
Look up table with window size of 42 days with SW_IN VPD Tair
.3
Look up table with window size of 49 days with SW_IN VPD Tair
.4
Look up table with window size of 56 days with SW_IN VPD Tair
.0
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.33
Look up table with window size of 21 days with SW_IN
81
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................391
Look up table with window size of 14 days with SW_IN VPD Tair
....................627
Look up table with window size of 7 days with SW_IN
.............126
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............371
Look up table with window size of 28 days with SW_IN VPD Tair
........334
Look up table with window size of 35 days with SW_IN VPD Tair
.....269
Look up table with window size of 42 days with SW_IN VPD Tair
..241
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
9
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
11
Look up table with window size of 28 days with SW_IN
19
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................566
Look up table with window size of 14 days with SW_IN VPD Tair
.......................426
Look up table with window size of 7 days with SW_IN
..................1
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................5
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................591
Look up table with window size of 28 days with SW_IN VPD Tair
............763
Look up table with window size of 35 days with SW_IN VPD Tair
.....355
Look up table with window size of 42 days with SW_IN VPD Tair
.58
Look up table with window size of 49 days with SW_IN VPD Tair
.43
Look up table with window size of 56 days with SW_IN VPD Tair
32
Look up table with window size of 63 days with SW_IN VPD Tair
39
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.97
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.139
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..193
Look up table with window size of 14 days with SW_IN VPD Tair
19
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..261
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...318
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...328
Look up table with window size of 14 days with SW_IN VPD Tair
55
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....426
Look up table with window size of 14 days with SW_IN VPD Tair
42
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....496
Look up table with window size of 14 days with SW_IN VPD Tair
58
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......380
Look up table with window size of 14 days with SW_IN VPD Tair
..270
Look up table with window size of 7 days with SW_IN
16
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........474
Look up table with window size of 14 days with SW_IN VPD Tair
...302
Look up table with window size of 7 days with SW_IN
34
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........410
Look up table with window size of 14 days with SW_IN VPD Tair
.....431
Look up table with window size of 7 days with SW_IN
.22
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.8
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.77
Look up table with window size of 28 days with SW_IN VPD Tair
20
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........452
Look up table with window size of 14 days with SW_IN VPD Tair
.......575
Look up table with window size of 7 days with SW_IN
.21
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.115
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............555
Look up table with window size of 14 days with SW_IN VPD Tair
........564
Look up table with window size of 7 days with SW_IN
..44
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..128
Look up table with window size of 28 days with SW_IN VPD Tair
.50
Look up table with window size of 35 days with SW_IN VPD Tair
12
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
19
Look up table with window size of 21 days with SW_IN
24
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................525
Look up table with window size of 14 days with SW_IN VPD Tair
...........650
Look up table with window size of 7 days with SW_IN
.....45
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....442
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................467
Look up table with window size of 14 days with SW_IN VPD Tair
...............527
Look up table with window size of 7 days with SW_IN
..........47
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........502
Look up table with window size of 28 days with SW_IN VPD Tair
....224
Look up table with window size of 35 days with SW_IN VPD Tair
..70
Look up table with window size of 42 days with SW_IN VPD Tair
.18
Look up table with window size of 49 days with SW_IN VPD Tair
.25
Look up table with window size of 56 days with SW_IN VPD Tair
.4
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.3
Look up table with window size of 21 days with SW_IN
.89
Look up table with window size of 28 days with SW_IN
32
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................498
Look up table with window size of 14 days with SW_IN VPD Tair
...................651
Look up table with window size of 7 days with SW_IN
............35
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............2
Look up table with window size of 21 days with SW_IN VPD Tair
............476
Look up table with window size of 28 days with SW_IN VPD Tair
.......587
Look up table with window size of 35 days with SW_IN VPD Tair
.96
Look up table with window size of 42 days with SW_IN VPD Tair
14
Look up table with window size of 49 days with SW_IN VPD Tair
22
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
10
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
3
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................411
Look up table with window size of 14 days with SW_IN VPD Tair
........................699
Look up table with window size of 7 days with SW_IN
.................158
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................447
Look up table with window size of 28 days with SW_IN VPD Tair
...........501
Look up table with window size of 35 days with SW_IN VPD Tair
......483
Look up table with window size of 42 days with SW_IN VPD Tair
.131
Look up table with window size of 49 days with SW_IN VPD Tair
31
Look up table with window size of 56 days with SW_IN VPD Tair
12
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
9
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
31
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
78
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.145
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.174
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..209
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..265
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...306
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...370
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....426
Look up table with window size of 14 days with SW_IN VPD Tair
32
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....226
Look up table with window size of 14 days with SW_IN VPD Tair
...199
Look up table with window size of 7 days with SW_IN
.134
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......481
Look up table with window size of 14 days with SW_IN VPD Tair
.185
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........415
Look up table with window size of 14 days with SW_IN VPD Tair
...148
Look up table with window size of 7 days with SW_IN
..99
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.0
Look up table with window size of 28 days with SW_IN VPD Tair
.84
Look up table with window size of 35 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........508
Look up table with window size of 14 days with SW_IN VPD Tair
....349
Look up table with window size of 7 days with SW_IN
.99
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........569
Look up table with window size of 14 days with SW_IN VPD Tair
.....513
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
68
Look up table with window size of 28 days with SW_IN VPD Tair
12
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............343
Look up table with window size of 14 days with SW_IN VPD Tair
..........357
Look up table with window size of 7 days with SW_IN
......172
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....386
Look up table with window size of 28 days with SW_IN VPD Tair
.60
Look up table with window size of 35 days with SW_IN VPD Tair
17
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
43
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
11
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................342
Look up table with window size of 14 days with SW_IN VPD Tair
.............493
Look up table with window size of 7 days with SW_IN
........89
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......3
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......329
Look up table with window size of 28 days with SW_IN VPD Tair
....310
Look up table with window size of 35 days with SW_IN VPD Tair
.82
Look up table with window size of 42 days with SW_IN VPD Tair
14
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................497
Look up table with window size of 14 days with SW_IN VPD Tair
...............671
Look up table with window size of 7 days with SW_IN
........20
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........411
Look up table with window size of 28 days with SW_IN VPD Tair
....251
Look up table with window size of 35 days with SW_IN VPD Tair
.109
Look up table with window size of 42 days with SW_IN VPD Tair
17
Look up table with window size of 49 days with SW_IN VPD Tair
18
Look up table with window size of 56 days with SW_IN VPD Tair
11
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................558
Look up table with window size of 14 days with SW_IN VPD Tair
..................459
Look up table with window size of 7 days with SW_IN
.............9
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............765
Look up table with window size of 28 days with SW_IN VPD Tair
......426
Look up table with window size of 35 days with SW_IN VPD Tair
.60
Look up table with window size of 42 days with SW_IN VPD Tair
.75
Look up table with window size of 49 days with SW_IN VPD Tair
44
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................491
Look up table with window size of 14 days with SW_IN VPD Tair
.......................692
Look up table with window size of 7 days with SW_IN
................0
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................278
Look up table with window size of 28 days with SW_IN VPD Tair
..............621
Look up table with window size of 35 days with SW_IN VPD Tair
.......408
Look up table with window size of 42 days with SW_IN VPD Tair
...236
Look up table with window size of 49 days with SW_IN VPD Tair
.112
Look up table with window size of 56 days with SW_IN VPD Tair
32
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
16
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.92
Look up table with window size of 14 days with SW_IN VPD Tair
25
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.124
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
56
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..205
Look up table with window size of 14 days with SW_IN VPD Tair
15
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...289
Look up table with window size of 14 days with SW_IN VPD Tair
28
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...377
Look up table with window size of 14 days with SW_IN VPD Tair
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....452
Look up table with window size of 14 days with SW_IN VPD Tair
16
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....428
Look up table with window size of 14 days with SW_IN VPD Tair
.63
Look up table with window size of 7 days with SW_IN
70
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......408
Look up table with window size of 14 days with SW_IN VPD Tair
..255
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........453
Look up table with window size of 14 days with SW_IN VPD Tair
...183
Look up table with window size of 7 days with SW_IN
.165
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........456
Look up table with window size of 14 days with SW_IN VPD Tair
.....349
Look up table with window size of 7 days with SW_IN
.30
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.122
Look up table with window size of 28 days with SW_IN VPD Tair
14
Look up table with window size of 35 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........427
Look up table with window size of 14 days with SW_IN VPD Tair
.......610
Look up table with window size of 7 days with SW_IN
.85
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
39
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............496
Look up table with window size of 14 days with SW_IN VPD Tair
.........585
Look up table with window size of 7 days with SW_IN
...34
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..272
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................555
Look up table with window size of 14 days with SW_IN VPD Tair
...........318
Look up table with window size of 7 days with SW_IN
........34
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......177
Look up table with window size of 28 days with SW_IN VPD Tair
.....465
Look up table with window size of 35 days with SW_IN VPD Tair
.82
Look up table with window size of 42 days with SW_IN VPD Tair
41
Look up table with window size of 49 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................667
Look up table with window size of 14 days with SW_IN VPD Tair
.............582
Look up table with window size of 7 days with SW_IN
.......0
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......476
Look up table with window size of 28 days with SW_IN VPD Tair
..190
Look up table with window size of 35 days with SW_IN VPD Tair
24
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
35
Look up table with window size of 56 days with SW_IN VPD Tair
13
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................348
Look up table with window size of 14 days with SW_IN VPD Tair
....................585
Look up table with window size of 7 days with SW_IN
..............60
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............561
Look up table with window size of 28 days with SW_IN VPD Tair
........629
Look up table with window size of 35 days with SW_IN VPD Tair
..93
Look up table with window size of 42 days with SW_IN VPD Tair
.28
Look up table with window size of 49 days with SW_IN VPD Tair
.27
Look up table with window size of 56 days with SW_IN VPD Tair
16
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
11
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
29
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................530
Look up table with window size of 14 days with SW_IN VPD Tair
.......................558
Look up table with window size of 7 days with SW_IN
.................9
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................664
Look up table with window size of 28 days with SW_IN VPD Tair
...........682
Look up table with window size of 35 days with SW_IN VPD Tair
....297
Look up table with window size of 42 days with SW_IN VPD Tair
.43
Look up table with window size of 49 days with SW_IN VPD Tair
23
Look up table with window size of 56 days with SW_IN VPD Tair
10
Look up table with window size of 63 days with SW_IN VPD Tair
17
Look up table with window size of 70 days with SW_IN VPD Tair
10
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
18
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
7
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.144
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.180
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..191
Look up table with window size of 14 days with SW_IN VPD Tair
22
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...273
Look up table with window size of 14 days with SW_IN VPD Tair
31
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...383
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....259
Look up table with window size of 14 days with SW_IN VPD Tair
..209
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....485
Look up table with window size of 14 days with SW_IN VPD Tair
36
Look up table with window size of 7 days with SW_IN
40
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......446
Look up table with window size of 14 days with SW_IN VPD Tair
..175
Look up table with window size of 7 days with SW_IN
52
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........490
Look up table with window size of 14 days with SW_IN VPD Tair
...261
Look up table with window size of 7 days with SW_IN
17
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
33
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........646
Look up table with window size of 14 days with SW_IN VPD Tair
...326
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........403
Look up table with window size of 14 days with SW_IN VPD Tair
.......636
Look up table with window size of 7 days with SW_IN
.99
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
15
Look up table with window size of 28 days with SW_IN VPD Tair
8
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............478
Look up table with window size of 14 days with SW_IN VPD Tair
.........649
Look up table with window size of 7 days with SW_IN
..11
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..228
Look up table with window size of 28 days with SW_IN VPD Tair
16
Look up table with window size of 35 days with SW_IN VPD Tair
13
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................488
Look up table with window size of 14 days with SW_IN VPD Tair
...........502
Look up table with window size of 7 days with SW_IN
......58
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......399
Look up table with window size of 28 days with SW_IN VPD Tair
..163
Look up table with window size of 35 days with SW_IN VPD Tair
28
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
20
Look up table with window size of 21 days with SW_IN
8
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................547
Look up table with window size of 14 days with SW_IN VPD Tair
..............543
Look up table with window size of 7 days with SW_IN
.........13
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........613
Look up table with window size of 28 days with SW_IN VPD Tair
..196
Look up table with window size of 35 days with SW_IN VPD Tair
58
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
32
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................518
Look up table with window size of 14 days with SW_IN VPD Tair
..................588
Look up table with window size of 7 days with SW_IN
............87
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............601
Look up table with window size of 28 days with SW_IN VPD Tair
......422
Look up table with window size of 35 days with SW_IN VPD Tair
.170
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................513
Look up table with window size of 14 days with SW_IN VPD Tair
.......................469
Look up table with window size of 7 days with SW_IN
..................77
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................501
Look up table with window size of 28 days with SW_IN VPD Tair
.............553
Look up table with window size of 35 days with SW_IN VPD Tair
.......517
Look up table with window size of 42 days with SW_IN VPD Tair
..176
Look up table with window size of 49 days with SW_IN VPD Tair
39
Look up table with window size of 56 days with SW_IN VPD Tair
16
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'P' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
63
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.120
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..265
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...308
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...285
Look up table with window size of 14 days with SW_IN VPD Tair
.98
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....417
Look up table with window size of 14 days with SW_IN VPD Tair
39
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....495
Look up table with window size of 14 days with SW_IN VPD Tair
66
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......530
Look up table with window size of 14 days with SW_IN VPD Tair
.86
Look up table with window size of 7 days with SW_IN
51
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........475
Look up table with window size of 14 days with SW_IN VPD Tair
...264
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
66
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........482
Look up table with window size of 14 days with SW_IN VPD Tair
....334
Look up table with window size of 7 days with SW_IN
.51
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.84
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........343
Look up table with window size of 14 days with SW_IN VPD Tair
........477
Look up table with window size of 7 days with SW_IN
...94
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..1
Look up table with window size of 21 days with SW_IN VPD Tair
..212
Look up table with window size of 28 days with SW_IN VPD Tair
22
Look up table with window size of 35 days with SW_IN VPD Tair
13
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............460
Look up table with window size of 14 days with SW_IN VPD Tair
.........572
Look up table with window size of 7 days with SW_IN
...28
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...275
Look up table with window size of 28 days with SW_IN VPD Tair
34
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................462
Look up table with window size of 14 days with SW_IN VPD Tair
............579
Look up table with window size of 7 days with SW_IN
......37
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....564
Look up table with window size of 28 days with SW_IN VPD Tair
16
Look up table with window size of 35 days with SW_IN VPD Tair
12
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................520
Look up table with window size of 14 days with SW_IN VPD Tair
..............526
Look up table with window size of 7 days with SW_IN
.........14
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........674
Look up table with window size of 28 days with SW_IN VPD Tair
..263
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................470
Look up table with window size of 14 days with SW_IN VPD Tair
...................659
Look up table with window size of 7 days with SW_IN
............92
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........625
Look up table with window size of 28 days with SW_IN VPD Tair
.....471
Look up table with window size of 35 days with SW_IN VPD Tair
35
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
19
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................366
Look up table with window size of 14 days with SW_IN VPD Tair
.........................419
Look up table with window size of 7 days with SW_IN
....................9
Mean diurnal course with window size of 0 days: .
....................0
Mean diurnal course with window size of 1 days: .
....................0
Mean diurnal course with window size of 2 days: .
....................0
Look up table with window size of 21 days with SW_IN VPD Tair
....................400
Look up table with window size of 28 days with SW_IN VPD Tair
................640
Look up table with window size of 35 days with SW_IN VPD Tair
..........667
Look up table with window size of 42 days with SW_IN VPD Tair
...151
Look up table with window size of 49 days with SW_IN VPD Tair
..77
Look up table with window size of 56 days with SW_IN VPD Tair
.72
Look up table with window size of 63 days with SW_IN VPD Tair
50
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
8
Look up table with window size of 28 days with SW_IN
9
Look up table with window size of 35 days with SW_IN
6
Finished gap filling of 'P' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
58
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.119
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..243
Look up table with window size of 14 days with SW_IN VPD Tair
23
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...357
Look up table with window size of 14 days with SW_IN VPD Tair
29
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....449
Look up table with window size of 14 days with SW_IN VPD Tair
16
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....410
Look up table with window size of 14 days with SW_IN VPD Tair
.127
Look up table with window size of 7 days with SW_IN
23
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......360
Look up table with window size of 14 days with SW_IN VPD Tair
...313
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........322
Look up table with window size of 14 days with SW_IN VPD Tair
....311
Look up table with window size of 7 days with SW_IN
.140
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
27
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........412
Look up table with window size of 14 days with SW_IN VPD Tair
.....350
Look up table with window size of 7 days with SW_IN
..89
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.2
Look up table with window size of 21 days with SW_IN VPD Tair
.34
Look up table with window size of 28 days with SW_IN VPD Tair
6
Look up table with window size of 35 days with SW_IN VPD Tair
69
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........563
Look up table with window size of 14 days with SW_IN VPD Tair
......548
Look up table with window size of 7 days with SW_IN
39
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
13
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............480
Look up table with window size of 14 days with SW_IN VPD Tair
.........577
Look up table with window size of 7 days with SW_IN
...16
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...306
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
11
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................570
Look up table with window size of 14 days with SW_IN VPD Tair
...........500
Look up table with window size of 7 days with SW_IN
......7
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....318
Look up table with window size of 28 days with SW_IN VPD Tair
..216
Look up table with window size of 35 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................479
Look up table with window size of 14 days with SW_IN VPD Tair
...............563
Look up table with window size of 7 days with SW_IN
.........39
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........689
Look up table with window size of 28 days with SW_IN VPD Tair
..216
Look up table with window size of 35 days with SW_IN VPD Tair
12
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
5
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................498
Look up table with window size of 14 days with SW_IN VPD Tair
...................547
Look up table with window size of 7 days with SW_IN
.............14
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............685
Look up table with window size of 28 days with SW_IN VPD Tair
......567
Look up table with window size of 35 days with SW_IN VPD Tair
14
Look up table with window size of 42 days with SW_IN VPD Tair
68
Look up table with window size of 49 days with SW_IN VPD Tair
8
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................497
Look up table with window size of 14 days with SW_IN VPD Tair
.......................433
Look up table with window size of 7 days with SW_IN
...................112
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................297
Look up table with window size of 28 days with SW_IN VPD Tair
...............350
Look up table with window size of 35 days with SW_IN VPD Tair
...........432
Look up table with window size of 42 days with SW_IN VPD Tair
.......343
Look up table with window size of 49 days with SW_IN VPD Tair
....103
Look up table with window size of 56 days with SW_IN VPD Tair
...8
Look up table with window size of 63 days with SW_IN VPD Tair
...26
Look up table with window size of 70 days with SW_IN VPD Tair
..4
Look up table with window size of 14 days with SW_IN
..29
Look up table with window size of 21 days with SW_IN
..139
Look up table with window size of 28 days with SW_IN
.39
Look up table with window size of 35 days with SW_IN
67
Finished gap filling of 'P' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.85
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
14
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.120
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.175
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..212
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..259
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...226
Look up table with window size of 14 days with SW_IN VPD Tair
70
Look up table with window size of 7 days with SW_IN
26
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...352
Look up table with window size of 14 days with SW_IN VPD Tair
32
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....358
Look up table with window size of 14 days with SW_IN VPD Tair
.105
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....433
Look up table with window size of 14 days with SW_IN VPD Tair
.77
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......333
Look up table with window size of 14 days with SW_IN VPD Tair
...256
Look up table with window size of 7 days with SW_IN
53
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
24
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........401
Look up table with window size of 14 days with SW_IN VPD Tair
....396
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........610
Look up table with window size of 14 days with SW_IN VPD Tair
...360
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........443
Look up table with window size of 14 days with SW_IN VPD Tair
.......531
Look up table with window size of 7 days with SW_IN
.46
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.61
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
11
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
71
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............550
Look up table with window size of 14 days with SW_IN VPD Tair
........557
Look up table with window size of 7 days with SW_IN
..71
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..188
Look up table with window size of 28 days with SW_IN VPD Tair
32
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................537
Look up table with window size of 14 days with SW_IN VPD Tair
...........493
Look up table with window size of 7 days with SW_IN
......51
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....1
Mean diurnal course with window size of 2 days: .
.....6
Look up table with window size of 21 days with SW_IN VPD Tair
.....399
Look up table with window size of 28 days with SW_IN VPD Tair
.136
Look up table with window size of 35 days with SW_IN VPD Tair
42
Look up table with window size of 42 days with SW_IN VPD Tair
11
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................505
Look up table with window size of 14 days with SW_IN VPD Tair
...............587
Look up table with window size of 7 days with SW_IN
.........28
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........558
Look up table with window size of 28 days with SW_IN VPD Tair
...234
Look up table with window size of 35 days with SW_IN VPD Tair
83
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
3
Mean diurnal course with window size of 21 days: .
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................467
Look up table with window size of 14 days with SW_IN VPD Tair
...................599
Look up table with window size of 7 days with SW_IN
.............17
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............634
Look up table with window size of 28 days with SW_IN VPD Tair
......454
Look up table with window size of 35 days with SW_IN VPD Tair
..92
Look up table with window size of 42 days with SW_IN VPD Tair
.50
Look up table with window size of 49 days with SW_IN VPD Tair
35
Look up table with window size of 56 days with SW_IN VPD Tair
23
Look up table with window size of 63 days with SW_IN VPD Tair
17
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
17
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................468
Look up table with window size of 14 days with SW_IN VPD Tair
........................620
Look up table with window size of 7 days with SW_IN
.................43
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................561
Look up table with window size of 28 days with SW_IN VPD Tair
...........467
Look up table with window size of 35 days with SW_IN VPD Tair
.......566
Look up table with window size of 42 days with SW_IN VPD Tair
.115
Look up table with window size of 49 days with SW_IN VPD Tair
17
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
8
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
60
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.149
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.153
Look up table with window size of 14 days with SW_IN VPD Tair
28
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..204
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...309
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...351
Look up table with window size of 14 days with SW_IN VPD Tair
27
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....419
Look up table with window size of 14 days with SW_IN VPD Tair
49
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....361
Look up table with window size of 14 days with SW_IN VPD Tair
..189
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......347
Look up table with window size of 14 days with SW_IN VPD Tair
...298
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
18
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........613
Look up table with window size of 14 days with SW_IN VPD Tair
.183
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........386
Look up table with window size of 14 days with SW_IN VPD Tair
.....418
Look up table with window size of 7 days with SW_IN
.128
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
23
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
5
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........539
Look up table with window size of 14 days with SW_IN VPD Tair
......478
Look up table with window size of 7 days with SW_IN
.68
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
80
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............475
Look up table with window size of 14 days with SW_IN VPD Tair
.........634
Look up table with window size of 7 days with SW_IN
..50
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..230
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................527
Look up table with window size of 14 days with SW_IN VPD Tair
...........552
Look up table with window size of 7 days with SW_IN
.....0
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....397
Look up table with window size of 28 days with SW_IN VPD Tair
..16
Look up table with window size of 35 days with SW_IN VPD Tair
.1
Look up table with window size of 42 days with SW_IN VPD Tair
.17
Look up table with window size of 49 days with SW_IN VPD Tair
.12
Look up table with window size of 56 days with SW_IN VPD Tair
.0
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.105
Look up table with window size of 21 days with SW_IN
49
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................401
Look up table with window size of 14 days with SW_IN VPD Tair
................601
Look up table with window size of 7 days with SW_IN
..........91
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........1
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........706
Look up table with window size of 28 days with SW_IN VPD Tair
..183
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
20
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................649
Look up table with window size of 14 days with SW_IN VPD Tair
.................604
Look up table with window size of 7 days with SW_IN
...........1
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........5
Mean diurnal course with window size of 2 days: .
...........3
Look up table with window size of 21 days with SW_IN VPD Tair
...........478
Look up table with window size of 28 days with SW_IN VPD Tair
......597
Look up table with window size of 35 days with SW_IN VPD Tair
56
Look up table with window size of 42 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................513
Look up table with window size of 14 days with SW_IN VPD Tair
.......................506
Look up table with window size of 7 days with SW_IN
..................18
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................1
Look up table with window size of 21 days with SW_IN VPD Tair
..................679
Look up table with window size of 28 days with SW_IN VPD Tair
...........702
Look up table with window size of 35 days with SW_IN VPD Tair
....424
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
7
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
9
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
23
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.144
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Look up table with window size of 14 days with SW_IN VPD Tair
26
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..208
Look up table with window size of 14 days with SW_IN VPD Tair
55
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...305
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...307
Look up table with window size of 14 days with SW_IN VPD Tair
79
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....442
Look up table with window size of 14 days with SW_IN VPD Tair
20
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....467
Look up table with window size of 14 days with SW_IN VPD Tair
67
Look up table with window size of 7 days with SW_IN
20
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......471
Look up table with window size of 14 days with SW_IN VPD Tair
..195
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........372
Look up table with window size of 14 days with SW_IN VPD Tair
....254
Look up table with window size of 7 days with SW_IN
.127
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
17
Look up table with window size of 28 days with SW_IN VPD Tair
30
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........458
Look up table with window size of 14 days with SW_IN VPD Tair
.....389
Look up table with window size of 7 days with SW_IN
.97
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
8
Look up table with window size of 21 days with SW_IN VPD Tair
18
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........414
Look up table with window size of 14 days with SW_IN VPD Tair
.......539
Look up table with window size of 7 days with SW_IN
..136
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
66
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............376
Look up table with window size of 14 days with SW_IN VPD Tair
..........699
Look up table with window size of 7 days with SW_IN
...30
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..1
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..260
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
13
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
10
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................486
Look up table with window size of 14 days with SW_IN VPD Tair
...........288
Look up table with window size of 7 days with SW_IN
.........23
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........502
Look up table with window size of 28 days with SW_IN VPD Tair
...324
Look up table with window size of 35 days with SW_IN VPD Tair
18
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
14
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................542
Look up table with window size of 14 days with SW_IN VPD Tair
..............374
Look up table with window size of 7 days with SW_IN
..........8
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........8
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........449
Look up table with window size of 28 days with SW_IN VPD Tair
......322
Look up table with window size of 35 days with SW_IN VPD Tair
...185
Look up table with window size of 42 days with SW_IN VPD Tair
.61
Look up table with window size of 49 days with SW_IN VPD Tair
22
Look up table with window size of 56 days with SW_IN VPD Tair
13
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
14
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................543
Look up table with window size of 14 days with SW_IN VPD Tair
..................616
Look up table with window size of 7 days with SW_IN
............24
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............692
Look up table with window size of 28 days with SW_IN VPD Tair
.....433
Look up table with window size of 35 days with SW_IN VPD Tair
57
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
9
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
12
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................487
Look up table with window size of 14 days with SW_IN VPD Tair
.......................544
Look up table with window size of 7 days with SW_IN
..................22
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................480
Look up table with window size of 28 days with SW_IN VPD Tair
.............568
Look up table with window size of 35 days with SW_IN VPD Tair
.......487
Look up table with window size of 42 days with SW_IN VPD Tair
..184
Look up table with window size of 49 days with SW_IN VPD Tair
.107
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
63
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..211
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...295
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...381
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....364
Look up table with window size of 14 days with SW_IN VPD Tair
.104
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....523
Look up table with window size of 14 days with SW_IN VPD Tair
36
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......438
Look up table with window size of 14 days with SW_IN VPD Tair
..144
Look up table with window size of 7 days with SW_IN
83
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........417
Look up table with window size of 14 days with SW_IN VPD Tair
...342
Look up table with window size of 7 days with SW_IN
17
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
35
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........486
Look up table with window size of 14 days with SW_IN VPD Tair
....352
Look up table with window size of 7 days with SW_IN
.62
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
8
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
59
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........588
Look up table with window size of 14 days with SW_IN VPD Tair
.....472
Look up table with window size of 7 days with SW_IN
.7
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............522
Look up table with window size of 14 days with SW_IN VPD Tair
........291
Look up table with window size of 7 days with SW_IN
.....5
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....503
Look up table with window size of 28 days with SW_IN VPD Tair
78
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................390
Look up table with window size of 14 days with SW_IN VPD Tair
............546
Look up table with window size of 7 days with SW_IN
.......41
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......1
Mean diurnal course with window size of 2 days: .
......6
Look up table with window size of 21 days with SW_IN VPD Tair
......517
Look up table with window size of 28 days with SW_IN VPD Tair
.111
Look up table with window size of 35 days with SW_IN VPD Tair
30
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
13
Look up table with window size of 21 days with SW_IN
7
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................419
Look up table with window size of 14 days with SW_IN VPD Tair
...............487
Look up table with window size of 7 days with SW_IN
...........32
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........716
Look up table with window size of 28 days with SW_IN VPD Tair
...133
Look up table with window size of 35 days with SW_IN VPD Tair
..67
Look up table with window size of 42 days with SW_IN VPD Tair
.65
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
80
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................472
Look up table with window size of 14 days with SW_IN VPD Tair
...................522
Look up table with window size of 7 days with SW_IN
..............60
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............725
Look up table with window size of 28 days with SW_IN VPD Tair
......461
Look up table with window size of 35 days with SW_IN VPD Tair
.122
Look up table with window size of 42 days with SW_IN VPD Tair
25
Look up table with window size of 49 days with SW_IN VPD Tair
8
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................485
Look up table with window size of 14 days with SW_IN VPD Tair
.......................500
Look up table with window size of 7 days with SW_IN
..................38
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................739
Look up table with window size of 28 days with SW_IN VPD Tair
...........741
Look up table with window size of 35 days with SW_IN VPD Tair
...372
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
22
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
60
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..172
Look up table with window size of 14 days with SW_IN VPD Tair
49
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..265
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...309
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...361
Look up table with window size of 14 days with SW_IN VPD Tair
25
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....388
Look up table with window size of 14 days with SW_IN VPD Tair
79
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....506
Look up table with window size of 14 days with SW_IN VPD Tair
45
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......497
Look up table with window size of 14 days with SW_IN VPD Tair
.115
Look up table with window size of 7 days with SW_IN
56
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........508
Look up table with window size of 14 days with SW_IN VPD Tair
...280
Look up table with window size of 7 days with SW_IN
17
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........394
Look up table with window size of 14 days with SW_IN VPD Tair
.....453
Look up table with window size of 7 days with SW_IN
.73
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
45
Look up table with window size of 28 days with SW_IN VPD Tair
6
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........481
Look up table with window size of 14 days with SW_IN VPD Tair
......523
Look up table with window size of 7 days with SW_IN
.15
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.146
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............408
Look up table with window size of 14 days with SW_IN VPD Tair
.........308
Look up table with window size of 7 days with SW_IN
......212
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....250
Look up table with window size of 28 days with SW_IN VPD Tair
..115
Look up table with window size of 35 days with SW_IN VPD Tair
.70
Look up table with window size of 42 days with SW_IN VPD Tair
36
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................447
Look up table with window size of 14 days with SW_IN VPD Tair
............476
Look up table with window size of 7 days with SW_IN
.......169
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....450
Look up table with window size of 28 days with SW_IN VPD Tair
.117
Look up table with window size of 35 days with SW_IN VPD Tair
11
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................509
Look up table with window size of 14 days with SW_IN VPD Tair
..............663
Look up table with window size of 7 days with SW_IN
........1
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........694
Look up table with window size of 28 days with SW_IN VPD Tair
.90
Look up table with window size of 35 days with SW_IN VPD Tair
38
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................481
Look up table with window size of 14 days with SW_IN VPD Tair
...................501
Look up table with window size of 7 days with SW_IN
..............50
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............1
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 21 days with SW_IN VPD Tair
.............503
Look up table with window size of 28 days with SW_IN VPD Tair
........497
Look up table with window size of 35 days with SW_IN VPD Tair
...190
Look up table with window size of 42 days with SW_IN VPD Tair
.106
Look up table with window size of 49 days with SW_IN VPD Tair
31
Look up table with window size of 56 days with SW_IN VPD Tair
22
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
8
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................577
Look up table with window size of 14 days with SW_IN VPD Tair
.......................611
Look up table with window size of 7 days with SW_IN
................38
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................633
Look up table with window size of 28 days with SW_IN VPD Tair
..........471
Look up table with window size of 35 days with SW_IN VPD Tair
.....308
Look up table with window size of 42 days with SW_IN VPD Tair
..177
Look up table with window size of 49 days with SW_IN VPD Tair
38
Look up table with window size of 56 days with SW_IN VPD Tair
9
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
6
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
4
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.109
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
31
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..217
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..227
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
40
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...251
Look up table with window size of 14 days with SW_IN VPD Tair
70
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...375
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....356
Look up table with window size of 14 days with SW_IN VPD Tair
.90
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....479
Look up table with window size of 14 days with SW_IN VPD Tair
54
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......531
Look up table with window size of 14 days with SW_IN VPD Tair
.136
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........521
Look up table with window size of 14 days with SW_IN VPD Tair
..210
Look up table with window size of 7 days with SW_IN
63
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
13
Look up table with window size of 28 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........475
Look up table with window size of 14 days with SW_IN VPD Tair
....485
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........526
Look up table with window size of 14 days with SW_IN VPD Tair
......574
Look up table with window size of 7 days with SW_IN
22
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
43
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............322
Look up table with window size of 14 days with SW_IN VPD Tair
..........537
Look up table with window size of 7 days with SW_IN
.....227
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...286
Look up table with window size of 28 days with SW_IN VPD Tair
6
Look up table with window size of 35 days with SW_IN VPD Tair
16
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................528
Look up table with window size of 14 days with SW_IN VPD Tair
...........347
Look up table with window size of 7 days with SW_IN
........110
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......5
Look up table with window size of 21 days with SW_IN VPD Tair
......311
Look up table with window size of 28 days with SW_IN VPD Tair
...195
Look up table with window size of 35 days with SW_IN VPD Tair
.90
Look up table with window size of 42 days with SW_IN VPD Tair
19
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
32
Look up table with window size of 63 days with SW_IN VPD Tair
39
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................587
Look up table with window size of 14 days with SW_IN VPD Tair
..............526
Look up table with window size of 7 days with SW_IN
........40
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........748
Look up table with window size of 28 days with SW_IN VPD Tair
.106
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................476
Look up table with window size of 14 days with SW_IN VPD Tair
...................620
Look up table with window size of 7 days with SW_IN
.............3
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............2
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............547
Look up table with window size of 28 days with SW_IN VPD Tair
.......381
Look up table with window size of 35 days with SW_IN VPD Tair
...194
Look up table with window size of 42 days with SW_IN VPD Tair
.148
Look up table with window size of 49 days with SW_IN VPD Tair
25
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
4
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................498
Look up table with window size of 14 days with SW_IN VPD Tair
.......................603
Look up table with window size of 7 days with SW_IN
.................4
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................693
Look up table with window size of 28 days with SW_IN VPD Tair
..........684
Look up table with window size of 35 days with SW_IN VPD Tair
...311
Look up table with window size of 42 days with SW_IN VPD Tair
68
Look up table with window size of 49 days with SW_IN VPD Tair
11
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'P' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
78
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.93
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...305
Look up table with window size of 14 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...357
Look up table with window size of 14 days with SW_IN VPD Tair
31
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....392
Look up table with window size of 14 days with SW_IN VPD Tair
65
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....337
Look up table with window size of 14 days with SW_IN VPD Tair
..106
Look up table with window size of 7 days with SW_IN
.110
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......401
Look up table with window size of 14 days with SW_IN VPD Tair
..245
Look up table with window size of 7 days with SW_IN
27
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........350
Look up table with window size of 14 days with SW_IN VPD Tair
....403
Look up table with window size of 7 days with SW_IN
39
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
9
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........525
Look up table with window size of 14 days with SW_IN VPD Tair
....402
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
14
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........450
Look up table with window size of 14 days with SW_IN VPD Tair
.......537
Look up table with window size of 7 days with SW_IN
.59
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.113
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............411
Look up table with window size of 14 days with SW_IN VPD Tair
.........618
Look up table with window size of 7 days with SW_IN
...73
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..275
Look up table with window size of 28 days with SW_IN VPD Tair
17
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................385
Look up table with window size of 14 days with SW_IN VPD Tair
............343
Look up table with window size of 7 days with SW_IN
.........229
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......470
Look up table with window size of 28 days with SW_IN VPD Tair
..233
Look up table with window size of 35 days with SW_IN VPD Tair
13
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................511
Look up table with window size of 14 days with SW_IN VPD Tair
..............667
Look up table with window size of 7 days with SW_IN
........8
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........506
Look up table with window size of 28 days with SW_IN VPD Tair
...274
Look up table with window size of 35 days with SW_IN VPD Tair
37
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................497
Look up table with window size of 14 days with SW_IN VPD Tair
...................435
Look up table with window size of 7 days with SW_IN
..............44
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............497
Look up table with window size of 28 days with SW_IN VPD Tair
.........509
Look up table with window size of 35 days with SW_IN VPD Tair
....185
Look up table with window size of 42 days with SW_IN VPD Tair
..83
Look up table with window size of 49 days with SW_IN VPD Tair
.87
Look up table with window size of 56 days with SW_IN VPD Tair
14
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
13
Look up table with window size of 21 days with SW_IN
17
Look up table with window size of 28 days with SW_IN
15
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................462
Look up table with window size of 14 days with SW_IN VPD Tair
........................617
Look up table with window size of 7 days with SW_IN
..................15
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................1
Look up table with window size of 21 days with SW_IN VPD Tair
.................201
Look up table with window size of 28 days with SW_IN VPD Tair
...............557
Look up table with window size of 35 days with SW_IN VPD Tair
..........608
Look up table with window size of 42 days with SW_IN VPD Tair
....130
Look up table with window size of 49 days with SW_IN VPD Tair
..173
Look up table with window size of 56 days with SW_IN VPD Tair
.32
Look up table with window size of 63 days with SW_IN VPD Tair
25
Look up table with window size of 70 days with SW_IN VPD Tair
13
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
13
Look up table with window size of 28 days with SW_IN
8
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
4
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
17
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
72
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.98
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.120
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.137
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.172
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..217
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..262
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...318
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...369
Look up table with window size of 14 days with SW_IN VPD Tair
19
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....435
Look up table with window size of 14 days with SW_IN VPD Tair
33
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....393
Look up table with window size of 14 days with SW_IN VPD Tair
.150
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......463
Look up table with window size of 14 days with SW_IN VPD Tair
..189
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
13
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........315
Look up table with window size of 14 days with SW_IN VPD Tair
....416
Look up table with window size of 7 days with SW_IN
44
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Look up table with window size of 28 days with SW_IN VPD Tair
28
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........507
Look up table with window size of 14 days with SW_IN VPD Tair
....329
Look up table with window size of 7 days with SW_IN
.62
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
71
Look up table with window size of 28 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........461
Look up table with window size of 14 days with SW_IN VPD Tair
.......540
Look up table with window size of 7 days with SW_IN
.40
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.119
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............518
Look up table with window size of 14 days with SW_IN VPD Tair
........534
Look up table with window size of 7 days with SW_IN
...12
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...301
Look up table with window size of 28 days with SW_IN VPD Tair
32
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................310
Look up table with window size of 14 days with SW_IN VPD Tair
.............485
Look up table with window size of 7 days with SW_IN
........91
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......641
Look up table with window size of 28 days with SW_IN VPD Tair
.118
Look up table with window size of 35 days with SW_IN VPD Tair
12
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................517
Look up table with window size of 14 days with SW_IN VPD Tair
..............419
Look up table with window size of 7 days with SW_IN
..........13
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........737
Look up table with window size of 28 days with SW_IN VPD Tair
...284
Look up table with window size of 35 days with SW_IN VPD Tair
25
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................399
Look up table with window size of 14 days with SW_IN VPD Tair
....................556
Look up table with window size of 7 days with SW_IN
..............19
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............3
Mean diurnal course with window size of 2 days: .
..............8
Look up table with window size of 21 days with SW_IN VPD Tair
..............475
Look up table with window size of 28 days with SW_IN VPD Tair
.........659
Look up table with window size of 35 days with SW_IN VPD Tair
..171
Look up table with window size of 42 days with SW_IN VPD Tair
.53
Look up table with window size of 49 days with SW_IN VPD Tair
16
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
8
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
23
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................440
Look up table with window size of 14 days with SW_IN VPD Tair
........................636
Look up table with window size of 7 days with SW_IN
..................39
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................665
Look up table with window size of 28 days with SW_IN VPD Tair
..........624
Look up table with window size of 35 days with SW_IN VPD Tair
....272
Look up table with window size of 42 days with SW_IN VPD Tair
..74
Look up table with window size of 49 days with SW_IN VPD Tair
.53
Look up table with window size of 56 days with SW_IN VPD Tair
21
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
10
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
24
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
5
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
79
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.111
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.148
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..261
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...386
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....447
Look up table with window size of 14 days with SW_IN VPD Tair
20
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....201
Look up table with window size of 14 days with SW_IN VPD Tair
...194
Look up table with window size of 7 days with SW_IN
.158
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......476
Look up table with window size of 14 days with SW_IN VPD Tair
..180
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........417
Look up table with window size of 14 days with SW_IN VPD Tair
...358
Look up table with window size of 7 days with SW_IN
27
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........540
Look up table with window size of 14 days with SW_IN VPD Tair
....324
Look up table with window size of 7 days with SW_IN
.36
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
23
Look up table with window size of 28 days with SW_IN VPD Tair
8
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
30
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........332
Look up table with window size of 14 days with SW_IN VPD Tair
........372
Look up table with window size of 7 days with SW_IN
....241
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..205
Look up table with window size of 28 days with SW_IN VPD Tair
12
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............426
Look up table with window size of 14 days with SW_IN VPD Tair
.........562
Look up table with window size of 7 days with SW_IN
....44
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...276
Look up table with window size of 28 days with SW_IN VPD Tair
52
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
34
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................489
Look up table with window size of 14 days with SW_IN VPD Tair
...........532
Look up table with window size of 7 days with SW_IN
......32
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......373
Look up table with window size of 28 days with SW_IN VPD Tair
..210
Look up table with window size of 35 days with SW_IN VPD Tair
30
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
6
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................458
Look up table with window size of 14 days with SW_IN VPD Tair
...............649
Look up table with window size of 7 days with SW_IN
.........0
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........557
Look up table with window size of 28 days with SW_IN VPD Tair
...321
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
7
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................587
Look up table with window size of 14 days with SW_IN VPD Tair
..................508
Look up table with window size of 7 days with SW_IN
.............0
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............679
Look up table with window size of 28 days with SW_IN VPD Tair
......364
Look up table with window size of 35 days with SW_IN VPD Tair
..142
Look up table with window size of 42 days with SW_IN VPD Tair
.33
Look up table with window size of 49 days with SW_IN VPD Tair
23
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
22
Look up table with window size of 35 days with SW_IN
30
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................488
Look up table with window size of 14 days with SW_IN VPD Tair
.......................567
Look up table with window size of 7 days with SW_IN
..................61
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................528
Look up table with window size of 28 days with SW_IN VPD Tair
............506
Look up table with window size of 35 days with SW_IN VPD Tair
.......427
Look up table with window size of 42 days with SW_IN VPD Tair
...177
Look up table with window size of 49 days with SW_IN VPD Tair
.34
Look up table with window size of 56 days with SW_IN VPD Tair
81
Look up table with window size of 63 days with SW_IN VPD Tair
7
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
11
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
30
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...321
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...356
Look up table with window size of 14 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....262
Look up table with window size of 14 days with SW_IN VPD Tair
..188
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....499
Look up table with window size of 14 days with SW_IN VPD Tair
26
Look up table with window size of 7 days with SW_IN
37
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......496
Look up table with window size of 14 days with SW_IN VPD Tair
.180
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........498
Look up table with window size of 14 days with SW_IN VPD Tair
...176
Look up table with window size of 7 days with SW_IN
.25
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.102
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........449
Look up table with window size of 14 days with SW_IN VPD Tair
.....459
Look up table with window size of 7 days with SW_IN
56
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........587
Look up table with window size of 14 days with SW_IN VPD Tair
.....513
Look up table with window size of 7 days with SW_IN
25
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
32
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............429
Look up table with window size of 14 days with SW_IN VPD Tair
.........522
Look up table with window size of 7 days with SW_IN
....23
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....315
Look up table with window size of 28 days with SW_IN VPD Tair
.106
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................572
Look up table with window size of 14 days with SW_IN VPD Tair
...........539
Look up table with window size of 7 days with SW_IN
.....1
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....475
Look up table with window size of 28 days with SW_IN VPD Tair
71
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................495
Look up table with window size of 14 days with SW_IN VPD Tair
...............684
Look up table with window size of 7 days with SW_IN
........8
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........555
Look up table with window size of 28 days with SW_IN VPD Tair
..209
Look up table with window size of 35 days with SW_IN VPD Tair
28
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................537
Look up table with window size of 14 days with SW_IN VPD Tair
..................339
Look up table with window size of 7 days with SW_IN
...............63
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............390
Look up table with window size of 28 days with SW_IN VPD Tair
..........408
Look up table with window size of 35 days with SW_IN VPD Tair
......263
Look up table with window size of 42 days with SW_IN VPD Tair
....334
Look up table with window size of 49 days with SW_IN VPD Tair
57
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
5
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................285
Look up table with window size of 14 days with SW_IN VPD Tair
.........................503
Look up table with window size of 7 days with SW_IN
....................205
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................518
Look up table with window size of 28 days with SW_IN VPD Tair
.............524
Look up table with window size of 35 days with SW_IN VPD Tair
........499
Look up table with window size of 42 days with SW_IN VPD Tair
...223
Look up table with window size of 49 days with SW_IN VPD Tair
.88
Look up table with window size of 56 days with SW_IN VPD Tair
9
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
6
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
4
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
7
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
10
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.97
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.119
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.149
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.155
Look up table with window size of 14 days with SW_IN VPD Tair
18
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..238
Look up table with window size of 14 days with SW_IN VPD Tair
22
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...317
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...288
Look up table with window size of 14 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....425
Look up table with window size of 14 days with SW_IN VPD Tair
27
Look up table with window size of 7 days with SW_IN
16
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....248
Look up table with window size of 14 days with SW_IN VPD Tair
...156
Look up table with window size of 7 days with SW_IN
.142
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......456
Look up table with window size of 14 days with SW_IN VPD Tair
..205
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........439
Look up table with window size of 14 days with SW_IN VPD Tair
...239
Look up table with window size of 7 days with SW_IN
.110
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
19
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........446
Look up table with window size of 14 days with SW_IN VPD Tair
.....467
Look up table with window size of 7 days with SW_IN
37
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
23
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........385
Look up table with window size of 14 days with SW_IN VPD Tair
.......573
Look up table with window size of 7 days with SW_IN
..53
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.126
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
16
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
8
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............396
Look up table with window size of 14 days with SW_IN VPD Tair
..........642
Look up table with window size of 7 days with SW_IN
...89
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..200
Look up table with window size of 28 days with SW_IN VPD Tair
60
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................464
Look up table with window size of 14 days with SW_IN VPD Tair
............545
Look up table with window size of 7 days with SW_IN
......3
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......1
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......463
Look up table with window size of 28 days with SW_IN VPD Tair
..122
Look up table with window size of 35 days with SW_IN VPD Tair
25
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
18
Look up table with window size of 21 days with SW_IN
22
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................409
Look up table with window size of 14 days with SW_IN VPD Tair
...............642
Look up table with window size of 7 days with SW_IN
.........96
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........5
Look up table with window size of 21 days with SW_IN VPD Tair
........481
Look up table with window size of 28 days with SW_IN VPD Tair
...254
Look up table with window size of 35 days with SW_IN VPD Tair
.43
Look up table with window size of 42 days with SW_IN VPD Tair
37
Look up table with window size of 49 days with SW_IN VPD Tair
9
Look up table with window size of 56 days with SW_IN VPD Tair
13
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
9
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................395
Look up table with window size of 14 days with SW_IN VPD Tair
....................461
Look up table with window size of 7 days with SW_IN
...............121
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............363
Look up table with window size of 28 days with SW_IN VPD Tair
..........732
Look up table with window size of 35 days with SW_IN VPD Tair
...265
Look up table with window size of 42 days with SW_IN VPD Tair
47
Look up table with window size of 49 days with SW_IN VPD Tair
11
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................454
Look up table with window size of 14 days with SW_IN VPD Tair
........................471
Look up table with window size of 7 days with SW_IN
...................90
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................511
Look up table with window size of 28 days with SW_IN VPD Tair
.............633
Look up table with window size of 35 days with SW_IN VPD Tair
.......335
Look up table with window size of 42 days with SW_IN VPD Tair
...48
Look up table with window size of 49 days with SW_IN VPD Tair
...104
Look up table with window size of 56 days with SW_IN VPD Tair
..87
Look up table with window size of 63 days with SW_IN VPD Tair
.22
Look up table with window size of 70 days with SW_IN VPD Tair
.11
Look up table with window size of 14 days with SW_IN
.23
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
82
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'P' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.73
Look up table with window size of 14 days with SW_IN VPD Tair
20
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.177
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..214
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..260
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...305
Look up table with window size of 14 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...383
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....331
Look up table with window size of 14 days with SW_IN VPD Tair
.125
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....543
Look up table with window size of 14 days with SW_IN VPD Tair
15
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......493
Look up table with window size of 14 days with SW_IN VPD Tair
.141
Look up table with window size of 7 days with SW_IN
40
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........526
Look up table with window size of 14 days with SW_IN VPD Tair
..256
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........515
Look up table with window size of 14 days with SW_IN VPD Tair
....351
Look up table with window size of 7 days with SW_IN
.107
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........533
Look up table with window size of 14 days with SW_IN VPD Tair
......428
Look up table with window size of 7 days with SW_IN
..36
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.2
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 21 days with SW_IN VPD Tair
.109
Look up table with window size of 28 days with SW_IN VPD Tair
20
Look up table with window size of 35 days with SW_IN VPD Tair
28
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............478
Look up table with window size of 14 days with SW_IN VPD Tair
.........577
Look up table with window size of 7 days with SW_IN
...4
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...1
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...333
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................515
Look up table with window size of 14 days with SW_IN VPD Tair
...........580
Look up table with window size of 7 days with SW_IN
.....12
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....468
Look up table with window size of 28 days with SW_IN VPD Tair
.88
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................439
Look up table with window size of 14 days with SW_IN VPD Tair
...............586
Look up table with window size of 7 days with SW_IN
.........24
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........690
Look up table with window size of 28 days with SW_IN VPD Tair
..223
Look up table with window size of 35 days with SW_IN VPD Tair
33
Look up table with window size of 42 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................500
Look up table with window size of 14 days with SW_IN VPD Tair
...................279
Look up table with window size of 7 days with SW_IN
................119
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............0
Mean diurnal course with window size of 2 days: .
...............7
Look up table with window size of 21 days with SW_IN VPD Tair
...............551
Look up table with window size of 28 days with SW_IN VPD Tair
.........621
Look up table with window size of 35 days with SW_IN VPD Tair
...252
Look up table with window size of 42 days with SW_IN VPD Tair
27
Look up table with window size of 49 days with SW_IN VPD Tair
38
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................431
Look up table with window size of 14 days with SW_IN VPD Tair
........................575
Look up table with window size of 7 days with SW_IN
..................93
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................659
Look up table with window size of 28 days with SW_IN VPD Tair
...........590
Look up table with window size of 35 days with SW_IN VPD Tair
.....357
Look up table with window size of 42 days with SW_IN VPD Tair
.82
Look up table with window size of 49 days with SW_IN VPD Tair
27
Look up table with window size of 56 days with SW_IN VPD Tair
18
Look up table with window size of 63 days with SW_IN VPD Tair
14
Look up table with window size of 70 days with SW_IN VPD Tair
7
Look up table with window size of 14 days with SW_IN
14
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
8
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.92
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.102
Look up table with window size of 14 days with SW_IN VPD Tair
17
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.148
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.173
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..260
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...310
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...331
Look up table with window size of 14 days with SW_IN VPD Tair
56
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....463
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....383
Look up table with window size of 14 days with SW_IN VPD Tair
.132
Look up table with window size of 7 days with SW_IN
29
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......459
Look up table with window size of 14 days with SW_IN VPD Tair
..207
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........463
Look up table with window size of 14 days with SW_IN VPD Tair
...316
Look up table with window size of 7 days with SW_IN
28
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........381
Look up table with window size of 14 days with SW_IN VPD Tair
.....382
Look up table with window size of 7 days with SW_IN
..63
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.140
Look up table with window size of 28 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........419
Look up table with window size of 14 days with SW_IN VPD Tair
.......354
Look up table with window size of 7 days with SW_IN
...80
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...293
Look up table with window size of 28 days with SW_IN VPD Tair
20
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............439
Look up table with window size of 14 days with SW_IN VPD Tair
.........623
Look up table with window size of 7 days with SW_IN
...70
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..1
Look up table with window size of 21 days with SW_IN VPD Tair
..231
Look up table with window size of 28 days with SW_IN VPD Tair
23
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................415
Look up table with window size of 14 days with SW_IN VPD Tair
............602
Look up table with window size of 7 days with SW_IN
......44
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......434
Look up table with window size of 28 days with SW_IN VPD Tair
.59
Look up table with window size of 35 days with SW_IN VPD Tair
.50
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
30
Look up table with window size of 21 days with SW_IN
29
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................518
Look up table with window size of 14 days with SW_IN VPD Tair
..............539
Look up table with window size of 7 days with SW_IN
.........18
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........2
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........611
Look up table with window size of 28 days with SW_IN VPD Tair
...230
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
15
Look up table with window size of 49 days with SW_IN VPD Tair
9
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
8
Look up table with window size of 28 days with SW_IN
18
Look up table with window size of 35 days with SW_IN
24
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................583
Look up table with window size of 14 days with SW_IN VPD Tair
..................637
Look up table with window size of 7 days with SW_IN
...........10
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........649
Look up table with window size of 28 days with SW_IN VPD Tair
.....485
Look up table with window size of 35 days with SW_IN VPD Tair
17
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................529
Look up table with window size of 14 days with SW_IN VPD Tair
.......................786
Look up table with window size of 7 days with SW_IN
...............7
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............0
Mean diurnal course with window size of 2 days: .
...............0
Look up table with window size of 21 days with SW_IN VPD Tair
...............498
Look up table with window size of 28 days with SW_IN VPD Tair
..........257
Look up table with window size of 35 days with SW_IN VPD Tair
........661
Look up table with window size of 42 days with SW_IN VPD Tair
.108
Look up table with window size of 49 days with SW_IN VPD Tair
23
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
9
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.103
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..208
Look up table with window size of 14 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..259
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...311
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...251
Look up table with window size of 14 days with SW_IN VPD Tair
.136
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....422
Look up table with window size of 14 days with SW_IN VPD Tair
46
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....485
Look up table with window size of 14 days with SW_IN VPD Tair
75
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......584
Look up table with window size of 14 days with SW_IN VPD Tair
83
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........666
Look up table with window size of 14 days with SW_IN VPD Tair
.144
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........483
Look up table with window size of 14 days with SW_IN VPD Tair
....470
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........558
Look up table with window size of 14 days with SW_IN VPD Tair
......544
Look up table with window size of 7 days with SW_IN
19
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
41
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............403
Look up table with window size of 14 days with SW_IN VPD Tair
.........439
Look up table with window size of 7 days with SW_IN
.....62
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....440
Look up table with window size of 28 days with SW_IN VPD Tair
35
Look up table with window size of 35 days with SW_IN VPD Tair
15
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................487
Look up table with window size of 14 days with SW_IN VPD Tair
...........598
Look up table with window size of 7 days with SW_IN
.....125
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....444
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................499
Look up table with window size of 14 days with SW_IN VPD Tair
...............517
Look up table with window size of 7 days with SW_IN
.........105
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........5
Look up table with window size of 21 days with SW_IN VPD Tair
........615
Look up table with window size of 28 days with SW_IN VPD Tair
..94
Look up table with window size of 35 days with SW_IN VPD Tair
.152
Look up table with window size of 42 days with SW_IN VPD Tair
21
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................474
Look up table with window size of 14 days with SW_IN VPD Tair
...................591
Look up table with window size of 7 days with SW_IN
.............55
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............440
Look up table with window size of 28 days with SW_IN VPD Tair
........345
Look up table with window size of 35 days with SW_IN VPD Tair
.....427
Look up table with window size of 42 days with SW_IN VPD Tair
33
Look up table with window size of 49 days with SW_IN VPD Tair
18
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
10
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................430
Look up table with window size of 14 days with SW_IN VPD Tair
........................678
Look up table with window size of 7 days with SW_IN
.................76
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................5
Look up table with window size of 21 days with SW_IN VPD Tair
................398
Look up table with window size of 28 days with SW_IN VPD Tair
............381
Look up table with window size of 35 days with SW_IN VPD Tair
.........514
Look up table with window size of 42 days with SW_IN VPD Tair
...212
Look up table with window size of 49 days with SW_IN VPD Tair
.101
Look up table with window size of 56 days with SW_IN VPD Tair
41
Look up table with window size of 63 days with SW_IN VPD Tair
5
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
8
Look up table with window size of 49 days with SW_IN
5
Look up table with window size of 56 days with SW_IN
5
Look up table with window size of 63 days with SW_IN
8
Finished gap filling of 'P' in 12 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
6
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
39
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.177
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...307
Look up table with window size of 14 days with SW_IN VPD Tair
12
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...362
Look up table with window size of 14 days with SW_IN VPD Tair
12
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....338
Look up table with window size of 14 days with SW_IN VPD Tair
.120
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....523
Look up table with window size of 14 days with SW_IN VPD Tair
37
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......316
Look up table with window size of 14 days with SW_IN VPD Tair
...191
Look up table with window size of 7 days with SW_IN
.140
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
19
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........592
Look up table with window size of 14 days with SW_IN VPD Tair
..172
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
28
Look up table with window size of 49 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........370
Look up table with window size of 14 days with SW_IN VPD Tair
......443
Look up table with window size of 7 days with SW_IN
.123
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
31
Look up table with window size of 28 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........523
Look up table with window size of 14 days with SW_IN VPD Tair
......407
Look up table with window size of 7 days with SW_IN
..61
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.3
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 21 days with SW_IN VPD Tair
.163
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............552
Look up table with window size of 14 days with SW_IN VPD Tair
........571
Look up table with window size of 7 days with SW_IN
..23
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..2
Look up table with window size of 21 days with SW_IN VPD Tair
..214
Look up table with window size of 28 days with SW_IN VPD Tair
31
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................180
Look up table with window size of 14 days with SW_IN VPD Tair
..............545
Look up table with window size of 7 days with SW_IN
.........128
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........5
Look up table with window size of 21 days with SW_IN VPD Tair
........562
Look up table with window size of 28 days with SW_IN VPD Tair
..141
Look up table with window size of 35 days with SW_IN VPD Tair
.74
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
17
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................506
Look up table with window size of 14 days with SW_IN VPD Tair
...............328
Look up table with window size of 7 days with SW_IN
...........126
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........527
Look up table with window size of 28 days with SW_IN VPD Tair
.....201
Look up table with window size of 35 days with SW_IN VPD Tair
...118
Look up table with window size of 42 days with SW_IN VPD Tair
..94
Look up table with window size of 49 days with SW_IN VPD Tair
.23
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
74
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
5
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................562
Look up table with window size of 14 days with SW_IN VPD Tair
..................605
Look up table with window size of 7 days with SW_IN
............0
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............446
Look up table with window size of 28 days with SW_IN VPD Tair
.......670
Look up table with window size of 35 days with SW_IN VPD Tair
.67
Look up table with window size of 42 days with SW_IN VPD Tair
18
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
19
Look up table with window size of 49 days with SW_IN
4
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................546
Look up table with window size of 14 days with SW_IN VPD Tair
.......................577
Look up table with window size of 7 days with SW_IN
.................30
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................601
Look up table with window size of 28 days with SW_IN VPD Tair
...........756
Look up table with window size of 35 days with SW_IN VPD Tair
...262
Look up table with window size of 42 days with SW_IN VPD Tair
.8
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
6
Look up table with window size of 63 days with SW_IN VPD Tair
74
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
12
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
10
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.109
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.142
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..205
Look up table with window size of 14 days with SW_IN VPD Tair
15
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..259
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...194
Look up table with window size of 14 days with SW_IN VPD Tair
.18
Look up table with window size of 7 days with SW_IN
.110
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...309
Look up table with window size of 14 days with SW_IN VPD Tair
21
Look up table with window size of 7 days with SW_IN
57
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....413
Look up table with window size of 14 days with SW_IN VPD Tair
51
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....475
Look up table with window size of 14 days with SW_IN VPD Tair
76
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......518
Look up table with window size of 14 days with SW_IN VPD Tair
.127
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
9
Look up table with window size of 28 days with SW_IN VPD Tair
8
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........550
Look up table with window size of 14 days with SW_IN VPD Tair
..237
Look up table with window size of 7 days with SW_IN
23
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........461
Look up table with window size of 14 days with SW_IN VPD Tair
.....406
Look up table with window size of 7 days with SW_IN
.82
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
7
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........348
Look up table with window size of 14 days with SW_IN VPD Tair
........436
Look up table with window size of 7 days with SW_IN
...76
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...256
Look up table with window size of 28 days with SW_IN VPD Tair
49
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............556
Look up table with window size of 14 days with SW_IN VPD Tair
........617
Look up table with window size of 7 days with SW_IN
..44
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.117
Look up table with window size of 28 days with SW_IN VPD Tair
37
Look up table with window size of 35 days with SW_IN VPD Tair
17
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................432
Look up table with window size of 14 days with SW_IN VPD Tair
............697
Look up table with window size of 7 days with SW_IN
.....34
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....434
Look up table with window size of 28 days with SW_IN VPD Tair
50
Look up table with window size of 35 days with SW_IN VPD Tair
13
Look up table with window size of 42 days with SW_IN VPD Tair
16
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................559
Look up table with window size of 14 days with SW_IN VPD Tair
..............542
Look up table with window size of 7 days with SW_IN
.........34
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........626
Look up table with window size of 28 days with SW_IN VPD Tair
..218
Look up table with window size of 35 days with SW_IN VPD Tair
17
Look up table with window size of 42 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................345
Look up table with window size of 14 days with SW_IN VPD Tair
....................866
Look up table with window size of 7 days with SW_IN
...........3
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........624
Look up table with window size of 28 days with SW_IN VPD Tair
.....450
Look up table with window size of 35 days with SW_IN VPD Tair
.36
Look up table with window size of 42 days with SW_IN VPD Tair
23
Look up table with window size of 49 days with SW_IN VPD Tair
17
Look up table with window size of 56 days with SW_IN VPD Tair
9
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
20
Look up table with window size of 35 days with SW_IN
9
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................437
Look up table with window size of 14 days with SW_IN VPD Tair
........................534
Look up table with window size of 7 days with SW_IN
...................98
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................530
Look up table with window size of 28 days with SW_IN VPD Tair
............839
Look up table with window size of 35 days with SW_IN VPD Tair
....334
Look up table with window size of 42 days with SW_IN VPD Tair
.51
Look up table with window size of 49 days with SW_IN VPD Tair
16
Look up table with window size of 56 days with SW_IN VPD Tair
35
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
63
Look up table with window size of 14 days with SW_IN VPD Tair
16
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.87
Look up table with window size of 14 days with SW_IN VPD Tair
35
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Look up table with window size of 14 days with SW_IN VPD Tair
27
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..184
Look up table with window size of 14 days with SW_IN VPD Tair
19
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..238
Look up table with window size of 14 days with SW_IN VPD Tair
29
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...271
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
37
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...388
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....348
Look up table with window size of 14 days with SW_IN VPD Tair
.112
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....487
Look up table with window size of 14 days with SW_IN VPD Tair
54
Look up table with window size of 7 days with SW_IN
21
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......219
Look up table with window size of 14 days with SW_IN VPD Tair
....142
Look up table with window size of 7 days with SW_IN
...288
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
12
Look up table with window size of 28 days with SW_IN VPD Tair
8
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........529
Look up table with window size of 14 days with SW_IN VPD Tair
..188
Look up table with window size of 7 days with SW_IN
61
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
12
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
7
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........621
Look up table with window size of 14 days with SW_IN VPD Tair
...333
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
19
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........508
Look up table with window size of 14 days with SW_IN VPD Tair
......455
Look up table with window size of 7 days with SW_IN
..60
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.3
Mean diurnal course with window size of 2 days: .
.7
Look up table with window size of 21 days with SW_IN VPD Tair
.129
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............428
Look up table with window size of 14 days with SW_IN VPD Tair
.........662
Look up table with window size of 7 days with SW_IN
...41
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..1
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..199
Look up table with window size of 28 days with SW_IN VPD Tair
34
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
19
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
8
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................531
Look up table with window size of 14 days with SW_IN VPD Tair
...........414
Look up table with window size of 7 days with SW_IN
.......36
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......665
Look up table with window size of 28 days with SW_IN VPD Tair
24
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................543
Look up table with window size of 14 days with SW_IN VPD Tair
..............517
Look up table with window size of 7 days with SW_IN
.........23
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........690
Look up table with window size of 28 days with SW_IN VPD Tair
..82
Look up table with window size of 35 days with SW_IN VPD Tair
.117
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
20
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
12
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................368
Look up table with window size of 14 days with SW_IN VPD Tair
....................765
Look up table with window size of 7 days with SW_IN
............124
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........563
Look up table with window size of 28 days with SW_IN VPD Tair
.....460
Look up table with window size of 35 days with SW_IN VPD Tair
.105
Look up table with window size of 42 days with SW_IN VPD Tair
14
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................203
Look up table with window size of 14 days with SW_IN VPD Tair
..........................674
Look up table with window size of 7 days with SW_IN
....................90
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................2
Look up table with window size of 21 days with SW_IN VPD Tair
...................666
Look up table with window size of 28 days with SW_IN VPD Tair
............716
Look up table with window size of 35 days with SW_IN VPD Tair
.....392
Look up table with window size of 42 days with SW_IN VPD Tair
.60
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
53
Look up table with window size of 63 days with SW_IN VPD Tair
15
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.170
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..185
Look up table with window size of 14 days with SW_IN VPD Tair
36
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...336
Look up table with window size of 14 days with SW_IN VPD Tair
50
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....392
Look up table with window size of 14 days with SW_IN VPD Tair
70
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....408
Look up table with window size of 14 days with SW_IN VPD Tair
.113
Look up table with window size of 7 days with SW_IN
40
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......523
Look up table with window size of 14 days with SW_IN VPD Tair
.138
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........559
Look up table with window size of 14 days with SW_IN VPD Tair
..233
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........568
Look up table with window size of 14 days with SW_IN VPD Tair
....385
Look up table with window size of 7 days with SW_IN
15
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........397
Look up table with window size of 14 days with SW_IN VPD Tair
.......506
Look up table with window size of 7 days with SW_IN
..122
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.3
Mean diurnal course with window size of 2 days: .
.4
Look up table with window size of 21 days with SW_IN VPD Tair
.50
Look up table with window size of 28 days with SW_IN VPD Tair
25
Look up table with window size of 35 days with SW_IN VPD Tair
31
Look up table with window size of 42 days with SW_IN VPD Tair
15
Look up table with window size of 49 days with SW_IN VPD Tair
11
Look up table with window size of 56 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............555
Look up table with window size of 14 days with SW_IN VPD Tair
........486
Look up table with window size of 7 days with SW_IN
...51
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...2
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...286
Look up table with window size of 28 days with SW_IN VPD Tair
14
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................371
Look up table with window size of 14 days with SW_IN VPD Tair
.............628
Look up table with window size of 7 days with SW_IN
......88
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....1
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....549
Look up table with window size of 28 days with SW_IN VPD Tair
27
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................392
Look up table with window size of 14 days with SW_IN VPD Tair
................723
Look up table with window size of 7 days with SW_IN
........64
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........381
Look up table with window size of 28 days with SW_IN VPD Tair
....372
Look up table with window size of 35 days with SW_IN VPD Tair
49
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
10
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................499
Look up table with window size of 14 days with SW_IN VPD Tair
...................670
Look up table with window size of 7 days with SW_IN
............6
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............545
Look up table with window size of 28 days with SW_IN VPD Tair
......488
Look up table with window size of 35 days with SW_IN VPD Tair
.115
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
10
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
38
Look up table with window size of 28 days with SW_IN
10
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................452
Look up table with window size of 14 days with SW_IN VPD Tair
........................438
Look up table with window size of 7 days with SW_IN
...................51
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................550
Look up table with window size of 28 days with SW_IN VPD Tair
.............578
Look up table with window size of 35 days with SW_IN VPD Tair
........458
Look up table with window size of 42 days with SW_IN VPD Tair
...115
Look up table with window size of 49 days with SW_IN VPD Tair
..69
Look up table with window size of 56 days with SW_IN VPD Tair
.67
Look up table with window size of 63 days with SW_IN VPD Tair
.15
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
23
Look up table with window size of 21 days with SW_IN
20
Look up table with window size of 28 days with SW_IN
13
Look up table with window size of 35 days with SW_IN
11
Look up table with window size of 42 days with SW_IN
4
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
5
Look up table with window size of 63 days with SW_IN
2
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
1
Mean diurnal course with window size of 28 days: .
1
Finished gap filling of 'P' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.118
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.180
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...382
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....438
Look up table with window size of 14 days with SW_IN VPD Tair
26
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....304
Look up table with window size of 14 days with SW_IN VPD Tair
..237
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......384
Look up table with window size of 14 days with SW_IN VPD Tair
..272
Look up table with window size of 7 days with SW_IN
17
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........435
Look up table with window size of 14 days with SW_IN VPD Tair
...370
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........448
Look up table with window size of 14 days with SW_IN VPD Tair
.....443
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
66
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........550
Look up table with window size of 14 days with SW_IN VPD Tair
......551
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
56
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............560
Look up table with window size of 14 days with SW_IN VPD Tair
........524
Look up table with window size of 7 days with SW_IN
...21
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..286
Look up table with window size of 28 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................380
Look up table with window size of 14 days with SW_IN VPD Tair
............748
Look up table with window size of 7 days with SW_IN
.....78
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....383
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
56
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................473
Look up table with window size of 14 days with SW_IN VPD Tair
...............676
Look up table with window size of 7 days with SW_IN
........32
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........605
Look up table with window size of 28 days with SW_IN VPD Tair
..201
Look up table with window size of 35 days with SW_IN VPD Tair
14
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................535
Look up table with window size of 14 days with SW_IN VPD Tair
..................603
Look up table with window size of 7 days with SW_IN
............24
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............591
Look up table with window size of 28 days with SW_IN VPD Tair
......513
Look up table with window size of 35 days with SW_IN VPD Tair
.40
Look up table with window size of 42 days with SW_IN VPD Tair
36
Look up table with window size of 49 days with SW_IN VPD Tair
19
Look up table with window size of 56 days with SW_IN VPD Tair
19
Look up table with window size of 63 days with SW_IN VPD Tair
10
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
8
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................350
Look up table with window size of 14 days with SW_IN VPD Tair
.........................793
Look up table with window size of 7 days with SW_IN
.................52
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................555
Look up table with window size of 28 days with SW_IN VPD Tair
...........543
Look up table with window size of 35 days with SW_IN VPD Tair
.....302
Look up table with window size of 42 days with SW_IN VPD Tair
..35
Look up table with window size of 49 days with SW_IN VPD Tair
..98
Look up table with window size of 56 days with SW_IN VPD Tair
.121
Look up table with window size of 63 days with SW_IN VPD Tair
22
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
2
Look up table with window size of 63 days with SW_IN
6
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
39
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
63
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.69
Look up table with window size of 14 days with SW_IN VPD Tair
30
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..211
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...299
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
13
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...301
Look up table with window size of 14 days with SW_IN VPD Tair
46
Look up table with window size of 7 days with SW_IN
36
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....407
Look up table with window size of 14 days with SW_IN VPD Tair
61
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....510
Look up table with window size of 14 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......376
Look up table with window size of 14 days with SW_IN VPD Tair
...247
Look up table with window size of 7 days with SW_IN
36
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
15
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........531
Look up table with window size of 14 days with SW_IN VPD Tair
..268
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........575
Look up table with window size of 14 days with SW_IN VPD Tair
...361
Look up table with window size of 7 days with SW_IN
15
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
21
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........463
Look up table with window size of 14 days with SW_IN VPD Tair
.......581
Look up table with window size of 7 days with SW_IN
.24
Mean diurnal course with window size of 0 days: .
1
Mean diurnal course with window size of 1 days: .
8
Mean diurnal course with window size of 2 days: .
8
Look up table with window size of 21 days with SW_IN VPD Tair
62
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............426
Look up table with window size of 14 days with SW_IN VPD Tair
.........579
Look up table with window size of 7 days with SW_IN
...34
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...339
Look up table with window size of 28 days with SW_IN VPD Tair
12
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................400
Look up table with window size of 14 days with SW_IN VPD Tair
............624
Look up table with window size of 7 days with SW_IN
......11
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......564
Look up table with window size of 28 days with SW_IN VPD Tair
65
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................544
Look up table with window size of 14 days with SW_IN VPD Tair
..............436
Look up table with window size of 7 days with SW_IN
..........9
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........1
Look up table with window size of 21 days with SW_IN VPD Tair
..........753
Look up table with window size of 28 days with SW_IN VPD Tair
..227
Look up table with window size of 35 days with SW_IN VPD Tair
29
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................484
Look up table with window size of 14 days with SW_IN VPD Tair
...................687
Look up table with window size of 7 days with SW_IN
............23
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............560
Look up table with window size of 28 days with SW_IN VPD Tair
......486
Look up table with window size of 35 days with SW_IN VPD Tair
.43
Look up table with window size of 42 days with SW_IN VPD Tair
.48
Look up table with window size of 49 days with SW_IN VPD Tair
70
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................548
Look up table with window size of 14 days with SW_IN VPD Tair
.......................610
Look up table with window size of 7 days with SW_IN
.................8
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................654
Look up table with window size of 28 days with SW_IN VPD Tair
..........565
Look up table with window size of 35 days with SW_IN VPD Tair
....358
Look up table with window size of 42 days with SW_IN VPD Tair
.123
Look up table with window size of 49 days with SW_IN VPD Tair
12
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
33
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
59
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.119
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.129
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.172
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..203
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
16
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...262
Look up table with window size of 14 days with SW_IN VPD Tair
59
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...375
Look up table with window size of 14 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....451
Look up table with window size of 14 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....421
Look up table with window size of 14 days with SW_IN VPD Tair
.65
Look up table with window size of 7 days with SW_IN
76
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......568
Look up table with window size of 14 days with SW_IN VPD Tair
.103
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........554
Look up table with window size of 14 days with SW_IN VPD Tair
..214
Look up table with window size of 7 days with SW_IN
31
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........492
Look up table with window size of 14 days with SW_IN VPD Tair
....480
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........566
Look up table with window size of 14 days with SW_IN VPD Tair
......279
Look up table with window size of 7 days with SW_IN
...40
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..252
Look up table with window size of 28 days with SW_IN VPD Tair
18
Look up table with window size of 35 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............379
Look up table with window size of 14 days with SW_IN VPD Tair
..........710
Look up table with window size of 7 days with SW_IN
...53
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..250
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................509
Look up table with window size of 14 days with SW_IN VPD Tair
...........542
Look up table with window size of 7 days with SW_IN
......68
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....469
Look up table with window size of 28 days with SW_IN VPD Tair
54
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
10
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................438
Look up table with window size of 14 days with SW_IN VPD Tair
...............532
Look up table with window size of 7 days with SW_IN
..........77
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........1
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........616
Look up table with window size of 28 days with SW_IN VPD Tair
...214
Look up table with window size of 35 days with SW_IN VPD Tair
.47
Look up table with window size of 42 days with SW_IN VPD Tair
14
Look up table with window size of 49 days with SW_IN VPD Tair
18
Look up table with window size of 56 days with SW_IN VPD Tair
14
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
7
Look up table with window size of 14 days with SW_IN
24
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................615
Look up table with window size of 14 days with SW_IN VPD Tair
.................594
Look up table with window size of 7 days with SW_IN
...........1
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........527
Look up table with window size of 28 days with SW_IN VPD Tair
......492
Look up table with window size of 35 days with SW_IN VPD Tair
.47
Look up table with window size of 42 days with SW_IN VPD Tair
.5
Look up table with window size of 49 days with SW_IN VPD Tair
.3
Look up table with window size of 56 days with SW_IN VPD Tair
.0
Look up table with window size of 63 days with SW_IN VPD Tair
.2
Look up table with window size of 70 days with SW_IN VPD Tair
.1
Look up table with window size of 14 days with SW_IN
.38
Look up table with window size of 21 days with SW_IN
10
Look up table with window size of 28 days with SW_IN
69
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................414
Look up table with window size of 14 days with SW_IN VPD Tair
........................697
Look up table with window size of 7 days with SW_IN
.................42
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................2
Look up table with window size of 21 days with SW_IN VPD Tair
.................662
Look up table with window size of 28 days with SW_IN VPD Tair
..........364
Look up table with window size of 35 days with SW_IN VPD Tair
......349
Look up table with window size of 42 days with SW_IN VPD Tair
...263
Look up table with window size of 49 days with SW_IN VPD Tair
10
Look up table with window size of 56 days with SW_IN VPD Tair
16
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
30
Look up table with window size of 35 days with SW_IN
17
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'P' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
23
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.97
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.149
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..265
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...314
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...386
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....428
Look up table with window size of 14 days with SW_IN VPD Tair
37
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....497
Look up table with window size of 14 days with SW_IN VPD Tair
61
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......419
Look up table with window size of 14 days with SW_IN VPD Tair
..228
Look up table with window size of 7 days with SW_IN
25
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........411
Look up table with window size of 14 days with SW_IN VPD Tair
....354
Look up table with window size of 7 days with SW_IN
36
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........512
Look up table with window size of 14 days with SW_IN VPD Tair
....406
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
53
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........334
Look up table with window size of 14 days with SW_IN VPD Tair
........778
Look up table with window size of 7 days with SW_IN
24
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
31
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............391
Look up table with window size of 14 days with SW_IN VPD Tair
..........672
Look up table with window size of 7 days with SW_IN
...27
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...237
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
45
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................445
Look up table with window size of 14 days with SW_IN VPD Tair
............622
Look up table with window size of 7 days with SW_IN
......10
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....532
Look up table with window size of 28 days with SW_IN VPD Tair
42
Look up table with window size of 35 days with SW_IN VPD Tair
24
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................513
Look up table with window size of 14 days with SW_IN VPD Tair
..............434
Look up table with window size of 7 days with SW_IN
..........29
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........732
Look up table with window size of 28 days with SW_IN VPD Tair
...181
Look up table with window size of 35 days with SW_IN VPD Tair
.45
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
13
Look up table with window size of 21 days with SW_IN
23
Look up table with window size of 28 days with SW_IN
18
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................391
Look up table with window size of 14 days with SW_IN VPD Tair
....................563
Look up table with window size of 7 days with SW_IN
..............7
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............414
Look up table with window size of 28 days with SW_IN VPD Tair
..........648
Look up table with window size of 35 days with SW_IN VPD Tair
...354
Look up table with window size of 42 days with SW_IN VPD Tair
14
Look up table with window size of 49 days with SW_IN VPD Tair
12
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................387
Look up table with window size of 14 days with SW_IN VPD Tair
........................636
Look up table with window size of 7 days with SW_IN
..................94
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................2
Look up table with window size of 21 days with SW_IN VPD Tair
.................676
Look up table with window size of 28 days with SW_IN VPD Tair
..........649
Look up table with window size of 35 days with SW_IN VPD Tair
....362
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
24
Look up table with window size of 63 days with SW_IN VPD Tair
28
Look up table with window size of 70 days with SW_IN VPD Tair
6
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
2
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
10
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
39
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
77
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.149
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.177
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..210
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..255
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...268
Look up table with window size of 14 days with SW_IN VPD Tair
54
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...388
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....458
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....411
Look up table with window size of 14 days with SW_IN VPD Tair
.140
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......331
Look up table with window size of 14 days with SW_IN VPD Tair
...180
Look up table with window size of 7 days with SW_IN
.157
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........527
Look up table with window size of 14 days with SW_IN VPD Tair
..247
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
9
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........265
Look up table with window size of 14 days with SW_IN VPD Tair
.......543
Look up table with window size of 7 days with SW_IN
.88
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
64
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........407
Look up table with window size of 14 days with SW_IN VPD Tair
.......255
Look up table with window size of 7 days with SW_IN
.....220
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..237
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
31
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............523
Look up table with window size of 14 days with SW_IN VPD Tair
........559
Look up table with window size of 7 days with SW_IN
...5
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...233
Look up table with window size of 28 days with SW_IN VPD Tair
19
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
42
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................578
Look up table with window size of 14 days with SW_IN VPD Tair
..........343
Look up table with window size of 7 days with SW_IN
.......54
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......415
Look up table with window size of 28 days with SW_IN VPD Tair
..19
Look up table with window size of 35 days with SW_IN VPD Tair
..58
Look up table with window size of 42 days with SW_IN VPD Tair
..209
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................538
Look up table with window size of 14 days with SW_IN VPD Tair
..............660
Look up table with window size of 7 days with SW_IN
........1
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........612
Look up table with window size of 28 days with SW_IN VPD Tair
.167
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................440
Look up table with window size of 14 days with SW_IN VPD Tair
...................537
Look up table with window size of 7 days with SW_IN
..............60
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............583
Look up table with window size of 28 days with SW_IN VPD Tair
.......616
Look up table with window size of 35 days with SW_IN VPD Tair
.46
Look up table with window size of 42 days with SW_IN VPD Tair
.74
Look up table with window size of 49 days with SW_IN VPD Tair
26
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
9
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
5
Look up table with window size of 49 days with SW_IN
4
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................516
Look up table with window size of 14 days with SW_IN VPD Tair
.......................657
Look up table with window size of 7 days with SW_IN
.................13
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................580
Look up table with window size of 28 days with SW_IN VPD Tair
...........356
Look up table with window size of 35 days with SW_IN VPD Tair
.......412
Look up table with window size of 42 days with SW_IN VPD Tair
...250
Look up table with window size of 49 days with SW_IN VPD Tair
85
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
49
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.97
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.165
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..167
Look up table with window size of 14 days with SW_IN VPD Tair
31
Look up table with window size of 7 days with SW_IN
23
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..261
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...314
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...384
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....370
Look up table with window size of 14 days with SW_IN VPD Tair
98
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....520
Look up table with window size of 14 days with SW_IN VPD Tair
31
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......509
Look up table with window size of 14 days with SW_IN VPD Tair
.155
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........570
Look up table with window size of 14 days with SW_IN VPD Tair
..232
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........469
Look up table with window size of 14 days with SW_IN VPD Tair
.....416
Look up table with window size of 7 days with SW_IN
38
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
45
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........418
Look up table with window size of 14 days with SW_IN VPD Tair
.......307
Look up table with window size of 7 days with SW_IN
....195
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..229
Look up table with window size of 28 days with SW_IN VPD Tair
18
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............389
Look up table with window size of 14 days with SW_IN VPD Tair
..........389
Look up table with window size of 7 days with SW_IN
......138
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....310
Look up table with window size of 28 days with SW_IN VPD Tair
.151
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
12
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................629
Look up table with window size of 14 days with SW_IN VPD Tair
..........668
Look up table with window size of 7 days with SW_IN
...0
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...378
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................373
Look up table with window size of 14 days with SW_IN VPD Tair
................647
Look up table with window size of 7 days with SW_IN
.........111
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........525
Look up table with window size of 28 days with SW_IN VPD Tair
...252
Look up table with window size of 35 days with SW_IN VPD Tair
.65
Look up table with window size of 42 days with SW_IN VPD Tair
31
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................415
Look up table with window size of 14 days with SW_IN VPD Tair
...................764
Look up table with window size of 7 days with SW_IN
............25
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............579
Look up table with window size of 28 days with SW_IN VPD Tair
......528
Look up table with window size of 35 days with SW_IN VPD Tair
34
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
26
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................464
Look up table with window size of 14 days with SW_IN VPD Tair
........................473
Look up table with window size of 7 days with SW_IN
...................64
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................520
Look up table with window size of 28 days with SW_IN VPD Tair
.............514
Look up table with window size of 35 days with SW_IN VPD Tair
........459
Look up table with window size of 42 days with SW_IN VPD Tair
...162
Look up table with window size of 49 days with SW_IN VPD Tair
..107
Look up table with window size of 56 days with SW_IN VPD Tair
.39
Look up table with window size of 63 days with SW_IN VPD Tair
11
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
10
Look up table with window size of 21 days with SW_IN
17
Look up table with window size of 28 days with SW_IN
27
Look up table with window size of 35 days with SW_IN
6
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'P' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.103
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.143
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.151
Look up table with window size of 14 days with SW_IN VPD Tair
23
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..254
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...286
Look up table with window size of 14 days with SW_IN VPD Tair
36
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...353
Look up table with window size of 14 days with SW_IN VPD Tair
35
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....452
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
13
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....384
Look up table with window size of 14 days with SW_IN VPD Tair
.164
Look up table with window size of 7 days with SW_IN
14
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......380
Look up table with window size of 14 days with SW_IN VPD Tair
..125
Look up table with window size of 7 days with SW_IN
.169
Mean diurnal course with window size of 0 days: .
1
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........484
Look up table with window size of 14 days with SW_IN VPD Tair
...322
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........437
Look up table with window size of 14 days with SW_IN VPD Tair
.....477
Look up table with window size of 7 days with SW_IN
40
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
16
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........423
Look up table with window size of 14 days with SW_IN VPD Tair
.......670
Look up table with window size of 7 days with SW_IN
53
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
19
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............398
Look up table with window size of 14 days with SW_IN VPD Tair
..........613
Look up table with window size of 7 days with SW_IN
...98
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..7
Look up table with window size of 21 days with SW_IN VPD Tair
..219
Look up table with window size of 28 days with SW_IN VPD Tair
36
Look up table with window size of 35 days with SW_IN VPD Tair
22
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................95
Look up table with window size of 14 days with SW_IN VPD Tair
...............489
Look up table with window size of 7 days with SW_IN
..........205
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........317
Look up table with window size of 28 days with SW_IN VPD Tair
.....496
Look up table with window size of 35 days with SW_IN VPD Tair
34
Look up table with window size of 42 days with SW_IN VPD Tair
21
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
8
Look up table with window size of 21 days with SW_IN
10
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................477
Look up table with window size of 14 days with SW_IN VPD Tair
...............590
Look up table with window size of 7 days with SW_IN
.........34
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........705
Look up table with window size of 28 days with SW_IN VPD Tair
..169
Look up table with window size of 35 days with SW_IN VPD Tair
22
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................338
Look up table with window size of 14 days with SW_IN VPD Tair
....................412
Look up table with window size of 7 days with SW_IN
................123
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............3
Mean diurnal course with window size of 2 days: .
...............0
Look up table with window size of 21 days with SW_IN VPD Tair
...............484
Look up table with window size of 28 days with SW_IN VPD Tair
..........580
Look up table with window size of 35 days with SW_IN VPD Tair
....312
Look up table with window size of 42 days with SW_IN VPD Tair
.81
Look up table with window size of 49 days with SW_IN VPD Tair
63
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................551
Look up table with window size of 14 days with SW_IN VPD Tair
.......................607
Look up table with window size of 7 days with SW_IN
.................13
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................365
Look up table with window size of 28 days with SW_IN VPD Tair
.............397
Look up table with window size of 35 days with SW_IN VPD Tair
.........504
Look up table with window size of 42 days with SW_IN VPD Tair
....247
Look up table with window size of 49 days with SW_IN VPD Tair
.151
Look up table with window size of 56 days with SW_IN VPD Tair
10
Look up table with window size of 63 days with SW_IN VPD Tair
11
Look up table with window size of 70 days with SW_IN VPD Tair
23
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
66
Look up table with window size of 14 days with SW_IN VPD Tair
12
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.86
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
31
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..212
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..258
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...313
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...352
Look up table with window size of 14 days with SW_IN VPD Tair
17
Look up table with window size of 7 days with SW_IN
19
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....459
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....445
Look up table with window size of 14 days with SW_IN VPD Tair
.93
Look up table with window size of 7 days with SW_IN
23
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......367
Look up table with window size of 14 days with SW_IN VPD Tair
...157
Look up table with window size of 7 days with SW_IN
.121
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
14
Look up table with window size of 28 days with SW_IN VPD Tair
10
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........506
Look up table with window size of 14 days with SW_IN VPD Tair
...255
Look up table with window size of 7 days with SW_IN
49
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........530
Look up table with window size of 14 days with SW_IN VPD Tair
....398
Look up table with window size of 7 days with SW_IN
20
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
22
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........559
Look up table with window size of 14 days with SW_IN VPD Tair
......579
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
28
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............605
Look up table with window size of 14 days with SW_IN VPD Tair
.......634
Look up table with window size of 7 days with SW_IN
.0
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.118
Look up table with window size of 28 days with SW_IN VPD Tair
38
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................370
Look up table with window size of 14 days with SW_IN VPD Tair
.............631
Look up table with window size of 7 days with SW_IN
......34
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......1
Look up table with window size of 21 days with SW_IN VPD Tair
......561
Look up table with window size of 28 days with SW_IN VPD Tair
75
Look up table with window size of 35 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................337
Look up table with window size of 14 days with SW_IN VPD Tair
................707
Look up table with window size of 7 days with SW_IN
.........32
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........610
Look up table with window size of 28 days with SW_IN VPD Tair
...285
Look up table with window size of 35 days with SW_IN VPD Tair
32
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................514
Look up table with window size of 14 days with SW_IN VPD Tair
..................586
Look up table with window size of 7 days with SW_IN
.............8
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............590
Look up table with window size of 28 days with SW_IN VPD Tair
.......491
Look up table with window size of 35 days with SW_IN VPD Tair
..86
Look up table with window size of 42 days with SW_IN VPD Tair
.40
Look up table with window size of 49 days with SW_IN VPD Tair
54
Look up table with window size of 56 days with SW_IN VPD Tair
17
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
8
Look up table with window size of 35 days with SW_IN
4
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................434
Look up table with window size of 14 days with SW_IN VPD Tair
........................741
Look up table with window size of 7 days with SW_IN
.................41
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................1
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................370
Look up table with window size of 28 days with SW_IN VPD Tair
............245
Look up table with window size of 35 days with SW_IN VPD Tair
..........650
Look up table with window size of 42 days with SW_IN VPD Tair
...246
Look up table with window size of 49 days with SW_IN VPD Tair
.108
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
13
Look up table with window size of 28 days with SW_IN
8
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
5
Look up table with window size of 49 days with SW_IN
5
Look up table with window size of 56 days with SW_IN
4
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
16
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
63
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..184
Look up table with window size of 14 days with SW_IN VPD Tair
37
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..262
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...222
Look up table with window size of 14 days with SW_IN VPD Tair
.99
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...308
Look up table with window size of 14 days with SW_IN VPD Tair
71
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....353
Look up table with window size of 14 days with SW_IN VPD Tair
.105
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....353
Look up table with window size of 14 days with SW_IN VPD Tair
..189
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
8
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......506
Look up table with window size of 14 days with SW_IN VPD Tair
.130
Look up table with window size of 7 days with SW_IN
37
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........258
Look up table with window size of 14 days with SW_IN VPD Tair
.....302
Look up table with window size of 7 days with SW_IN
..203
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
33
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
11
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........419
Look up table with window size of 14 days with SW_IN VPD Tair
.....419
Look up table with window size of 7 days with SW_IN
.119
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
16
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........549
Look up table with window size of 14 days with SW_IN VPD Tair
......524
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
59
Look up table with window size of 28 days with SW_IN VPD Tair
27
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............492
Look up table with window size of 14 days with SW_IN VPD Tair
.........513
Look up table with window size of 7 days with SW_IN
...22
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...1
Look up table with window size of 21 days with SW_IN VPD Tair
...159
Look up table with window size of 28 days with SW_IN VPD Tair
..128
Look up table with window size of 35 days with SW_IN VPD Tair
31
Look up table with window size of 42 days with SW_IN VPD Tair
20
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
5
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................493
Look up table with window size of 14 days with SW_IN VPD Tair
...........448
Look up table with window size of 7 days with SW_IN
.......34
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......1
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......590
Look up table with window size of 28 days with SW_IN VPD Tair
.88
Look up table with window size of 35 days with SW_IN VPD Tair
19
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................445
Look up table with window size of 14 days with SW_IN VPD Tair
...............554
Look up table with window size of 7 days with SW_IN
..........116
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........757
Look up table with window size of 28 days with SW_IN VPD Tair
.61
Look up table with window size of 35 days with SW_IN VPD Tair
46
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................473
Look up table with window size of 14 days with SW_IN VPD Tair
...................555
Look up table with window size of 7 days with SW_IN
.............31
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............6
Look up table with window size of 21 days with SW_IN VPD Tair
.............645
Look up table with window size of 28 days with SW_IN VPD Tair
......365
Look up table with window size of 35 days with SW_IN VPD Tair
...149
Look up table with window size of 42 days with SW_IN VPD Tair
.47
Look up table with window size of 49 days with SW_IN VPD Tair
.24
Look up table with window size of 56 days with SW_IN VPD Tair
.13
Look up table with window size of 63 days with SW_IN VPD Tair
15
Look up table with window size of 70 days with SW_IN VPD Tair
8
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
47
Look up table with window size of 35 days with SW_IN
19
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................515
Look up table with window size of 14 days with SW_IN VPD Tair
.......................620
Look up table with window size of 7 days with SW_IN
.................52
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................440
Look up table with window size of 28 days with SW_IN VPD Tair
............567
Look up table with window size of 35 days with SW_IN VPD Tair
......445
Look up table with window size of 42 days with SW_IN VPD Tair
..89
Look up table with window size of 49 days with SW_IN VPD Tair
.41
Look up table with window size of 56 days with SW_IN VPD Tair
.34
Look up table with window size of 63 days with SW_IN VPD Tair
13
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
43
Look up table with window size of 28 days with SW_IN
20
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
25
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
50
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.98
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.120
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..207
Look up table with window size of 14 days with SW_IN VPD Tair
12
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..263
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...297
Look up table with window size of 14 days with SW_IN VPD Tair
25
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...336
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
45
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....359
Look up table with window size of 14 days with SW_IN VPD Tair
.80
Look up table with window size of 7 days with SW_IN
17
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....446
Look up table with window size of 14 days with SW_IN VPD Tair
.82
Look up table with window size of 7 days with SW_IN
33
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......436
Look up table with window size of 14 days with SW_IN VPD Tair
..175
Look up table with window size of 7 days with SW_IN
64
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........459
Look up table with window size of 14 days with SW_IN VPD Tair
...296
Look up table with window size of 7 days with SW_IN
17
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
34
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........496
Look up table with window size of 14 days with SW_IN VPD Tair
....333
Look up table with window size of 7 days with SW_IN
.70
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
41
Look up table with window size of 28 days with SW_IN VPD Tair
13
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
15
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........446
Look up table with window size of 14 days with SW_IN VPD Tair
.......531
Look up table with window size of 7 days with SW_IN
.9
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.3
Look up table with window size of 21 days with SW_IN VPD Tair
.63
Look up table with window size of 28 days with SW_IN VPD Tair
.9
Look up table with window size of 35 days with SW_IN VPD Tair
.5
Look up table with window size of 42 days with SW_IN VPD Tair
.0
Look up table with window size of 49 days with SW_IN VPD Tair
.0
Look up table with window size of 56 days with SW_IN VPD Tair
.0
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.98
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............487
Look up table with window size of 14 days with SW_IN VPD Tair
.........605
Look up table with window size of 7 days with SW_IN
...28
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..227
Look up table with window size of 28 days with SW_IN VPD Tair
51
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................549
Look up table with window size of 14 days with SW_IN VPD Tair
...........229
Look up table with window size of 7 days with SW_IN
........59
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........576
Look up table with window size of 28 days with SW_IN VPD Tair
..255
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................519
Look up table with window size of 14 days with SW_IN VPD Tair
..............628
Look up table with window size of 7 days with SW_IN
........31
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........662
Look up table with window size of 28 days with SW_IN VPD Tair
.106
Look up table with window size of 35 days with SW_IN VPD Tair
44
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................403
Look up table with window size of 14 days with SW_IN VPD Tair
....................248
Look up table with window size of 7 days with SW_IN
.................239
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............0
Mean diurnal course with window size of 2 days: .
...............0
Look up table with window size of 21 days with SW_IN VPD Tair
...............267
Look up table with window size of 28 days with SW_IN VPD Tair
............507
Look up table with window size of 35 days with SW_IN VPD Tair
.......314
Look up table with window size of 42 days with SW_IN VPD Tair
....150
Look up table with window size of 49 days with SW_IN VPD Tair
..77
Look up table with window size of 56 days with SW_IN VPD Tair
..29
Look up table with window size of 63 days with SW_IN VPD Tair
.17
Look up table with window size of 70 days with SW_IN VPD Tair
.68
Look up table with window size of 14 days with SW_IN
18
Look up table with window size of 21 days with SW_IN
68
Finished gap filling of 'P' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................388
Look up table with window size of 14 days with SW_IN VPD Tair
........................654
Look up table with window size of 7 days with SW_IN
..................52
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................426
Look up table with window size of 28 days with SW_IN VPD Tair
.............633
Look up table with window size of 35 days with SW_IN VPD Tair
.......592
Look up table with window size of 42 days with SW_IN VPD Tair
.100
Look up table with window size of 49 days with SW_IN VPD Tair
15
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
9
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.96
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..117
Look up table with window size of 14 days with SW_IN VPD Tair
.1
Look up table with window size of 7 days with SW_IN
.103
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..259
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...270
Look up table with window size of 14 days with SW_IN VPD Tair
31
Look up table with window size of 7 days with SW_IN
19
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...353
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
21
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....440
Look up table with window size of 14 days with SW_IN VPD Tair
26
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....440
Look up table with window size of 14 days with SW_IN VPD Tair
.117
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......520
Look up table with window size of 14 days with SW_IN VPD Tair
.149
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........381
Look up table with window size of 14 days with SW_IN VPD Tair
....319
Look up table with window size of 7 days with SW_IN
.88
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
12
Look up table with window size of 49 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........459
Look up table with window size of 14 days with SW_IN VPD Tair
.....263
Look up table with window size of 7 days with SW_IN
..138
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.33
Look up table with window size of 28 days with SW_IN VPD Tair
78
Look up table with window size of 35 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........459
Look up table with window size of 14 days with SW_IN VPD Tair
.......546
Look up table with window size of 7 days with SW_IN
.51
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.97
Look up table with window size of 28 days with SW_IN VPD Tair
10
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............355
Look up table with window size of 14 days with SW_IN VPD Tair
..........272
Look up table with window size of 7 days with SW_IN
.......208
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....2
Look up table with window size of 21 days with SW_IN VPD Tair
.....99
Look up table with window size of 28 days with SW_IN VPD Tair
....193
Look up table with window size of 35 days with SW_IN VPD Tair
..221
Look up table with window size of 42 days with SW_IN VPD Tair
26
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
13
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................461
Look up table with window size of 14 days with SW_IN VPD Tair
............305
Look up table with window size of 7 days with SW_IN
.........69
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........695
Look up table with window size of 28 days with SW_IN VPD Tair
.138
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................439
Look up table with window size of 14 days with SW_IN VPD Tair
...............505
Look up table with window size of 7 days with SW_IN
..........151
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........616
Look up table with window size of 28 days with SW_IN VPD Tair
..211
Look up table with window size of 35 days with SW_IN VPD Tair
53
Look up table with window size of 42 days with SW_IN VPD Tair
15
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................407
Look up table with window size of 14 days with SW_IN VPD Tair
...................486
Look up table with window size of 7 days with SW_IN
...............101
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............611
Look up table with window size of 28 days with SW_IN VPD Tair
........541
Look up table with window size of 35 days with SW_IN VPD Tair
..119
Look up table with window size of 42 days with SW_IN VPD Tair
.10
Look up table with window size of 49 days with SW_IN VPD Tair
.18
Look up table with window size of 56 days with SW_IN VPD Tair
.16
Look up table with window size of 63 days with SW_IN VPD Tair
13
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
63
Look up table with window size of 21 days with SW_IN
18
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................401
Look up table with window size of 14 days with SW_IN VPD Tair
........................407
Look up table with window size of 7 days with SW_IN
....................119
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................1
Mean diurnal course with window size of 2 days: .
...................1
Look up table with window size of 21 days with SW_IN VPD Tair
...................459
Look up table with window size of 28 days with SW_IN VPD Tair
..............719
Look up table with window size of 35 days with SW_IN VPD Tair
.......287
Look up table with window size of 42 days with SW_IN VPD Tair
....121
Look up table with window size of 49 days with SW_IN VPD Tair
...215
Look up table with window size of 56 days with SW_IN VPD Tair
.77
Look up table with window size of 63 days with SW_IN VPD Tair
30
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
27
Look up table with window size of 42 days with SW_IN
13
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
27
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
72
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..199
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..227
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...316
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...387
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....398
Look up table with window size of 14 days with SW_IN VPD Tair
69
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....330
Look up table with window size of 14 days with SW_IN VPD Tair
..200
Look up table with window size of 7 days with SW_IN
26
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......288
Look up table with window size of 14 days with SW_IN VPD Tair
...228
Look up table with window size of 7 days with SW_IN
.127
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
19
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........533
Look up table with window size of 14 days with SW_IN VPD Tair
..103
Look up table with window size of 7 days with SW_IN
.87
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
73
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........470
Look up table with window size of 14 days with SW_IN VPD Tair
.....339
Look up table with window size of 7 days with SW_IN
.78
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
76
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........474
Look up table with window size of 14 days with SW_IN VPD Tair
......490
Look up table with window size of 7 days with SW_IN
..22
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.130
Look up table with window size of 28 days with SW_IN VPD Tair
28
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
14
Look up table with window size of 21 days with SW_IN
8
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............494
Look up table with window size of 14 days with SW_IN VPD Tair
.........518
Look up table with window size of 7 days with SW_IN
...2
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...304
Look up table with window size of 28 days with SW_IN VPD Tair
54
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
11
Look up table with window size of 21 days with SW_IN
8
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................414
Look up table with window size of 14 days with SW_IN VPD Tair
............161
Look up table with window size of 7 days with SW_IN
...........102
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........643
Look up table with window size of 28 days with SW_IN VPD Tair
...351
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................533
Look up table with window size of 14 days with SW_IN VPD Tair
..............703
Look up table with window size of 7 days with SW_IN
.......21
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......2
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......698
Look up table with window size of 28 days with SW_IN VPD Tair
42
Look up table with window size of 35 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................429
Look up table with window size of 14 days with SW_IN VPD Tair
...................685
Look up table with window size of 7 days with SW_IN
............93
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........700
Look up table with window size of 28 days with SW_IN VPD Tair
....410
Look up table with window size of 35 days with SW_IN VPD Tair
43
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
29
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................520
Look up table with window size of 14 days with SW_IN VPD Tair
.......................560
Look up table with window size of 7 days with SW_IN
.................20
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................660
Look up table with window size of 28 days with SW_IN VPD Tair
...........553
Look up table with window size of 35 days with SW_IN VPD Tair
.....308
Look up table with window size of 42 days with SW_IN VPD Tair
..98
Look up table with window size of 49 days with SW_IN VPD Tair
.59
Look up table with window size of 56 days with SW_IN VPD Tair
.24
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
9
Look up table with window size of 28 days with SW_IN
52
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
38
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..182
Look up table with window size of 14 days with SW_IN VPD Tair
22
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..241
Look up table with window size of 14 days with SW_IN VPD Tair
25
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...314
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...374
Look up table with window size of 14 days with SW_IN VPD Tair
14
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....456
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....482
Look up table with window size of 14 days with SW_IN VPD Tair
62
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......637
Look up table with window size of 14 days with SW_IN VPD Tair
39
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........503
Look up table with window size of 14 days with SW_IN VPD Tair
...279
Look up table with window size of 7 days with SW_IN
13
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
9
Look up table with window size of 28 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........380
Look up table with window size of 14 days with SW_IN VPD Tair
.....490
Look up table with window size of 7 days with SW_IN
.40
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
46
Look up table with window size of 28 days with SW_IN VPD Tair
10
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........473
Look up table with window size of 14 days with SW_IN VPD Tair
......600
Look up table with window size of 7 days with SW_IN
31
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
51
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............451
Look up table with window size of 14 days with SW_IN VPD Tair
.........608
Look up table with window size of 7 days with SW_IN
...106
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..210
Look up table with window size of 28 days with SW_IN VPD Tair
23
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................499
Look up table with window size of 14 days with SW_IN VPD Tair
...........556
Look up table with window size of 7 days with SW_IN
......0
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......543
Look up table with window size of 28 days with SW_IN VPD Tair
78
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................501
Look up table with window size of 14 days with SW_IN VPD Tair
...............538
Look up table with window size of 7 days with SW_IN
.........41
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........613
Look up table with window size of 28 days with SW_IN VPD Tair
...277
Look up table with window size of 35 days with SW_IN VPD Tair
18
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
8
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................413
Look up table with window size of 14 days with SW_IN VPD Tair
...................592
Look up table with window size of 7 days with SW_IN
..............91
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............643
Look up table with window size of 28 days with SW_IN VPD Tair
......537
Look up table with window size of 35 days with SW_IN VPD Tair
.68
Look up table with window size of 42 days with SW_IN VPD Tair
30
Look up table with window size of 49 days with SW_IN VPD Tair
26
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................469
Look up table with window size of 14 days with SW_IN VPD Tair
........................471
Look up table with window size of 7 days with SW_IN
...................27
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................702
Look up table with window size of 28 days with SW_IN VPD Tair
............454
Look up table with window size of 35 days with SW_IN VPD Tair
.......400
Look up table with window size of 42 days with SW_IN VPD Tair
...244
Look up table with window size of 49 days with SW_IN VPD Tair
.60
Look up table with window size of 56 days with SW_IN VPD Tair
49
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.120
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.148
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.161
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..256
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...233
Look up table with window size of 14 days with SW_IN VPD Tair
69
Look up table with window size of 7 days with SW_IN
20
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...329
Look up table with window size of 14 days with SW_IN VPD Tair
47
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....439
Look up table with window size of 14 days with SW_IN VPD Tair
19
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....392
Look up table with window size of 14 days with SW_IN VPD Tair
.155
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......440
Look up table with window size of 14 days with SW_IN VPD Tair
..185
Look up table with window size of 7 days with SW_IN
43
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........486
Look up table with window size of 14 days with SW_IN VPD Tair
...316
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........558
Look up table with window size of 14 days with SW_IN VPD Tair
....389
Look up table with window size of 7 days with SW_IN
19
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........432
Look up table with window size of 14 days with SW_IN VPD Tair
.......580
Look up table with window size of 7 days with SW_IN
.9
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.108
Look up table with window size of 28 days with SW_IN VPD Tair
22
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
8
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............596
Look up table with window size of 14 days with SW_IN VPD Tair
........552
Look up table with window size of 7 days with SW_IN
..34
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..189
Look up table with window size of 28 days with SW_IN VPD Tair
26
Look up table with window size of 35 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................513
Look up table with window size of 14 days with SW_IN VPD Tair
...........534
Look up table with window size of 7 days with SW_IN
......28
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......512
Look up table with window size of 28 days with SW_IN VPD Tair
74
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................494
Look up table with window size of 14 days with SW_IN VPD Tair
...............573
Look up table with window size of 7 days with SW_IN
.........31
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........460
Look up table with window size of 28 days with SW_IN VPD Tair
....198
Look up table with window size of 35 days with SW_IN VPD Tair
..222
Look up table with window size of 42 days with SW_IN VPD Tair
20
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................412
Look up table with window size of 14 days with SW_IN VPD Tair
...................544
Look up table with window size of 7 days with SW_IN
..............68
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............708
Look up table with window size of 28 days with SW_IN VPD Tair
......556
Look up table with window size of 35 days with SW_IN VPD Tair
.37
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
10
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
58
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
1
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................540
Look up table with window size of 14 days with SW_IN VPD Tair
.......................629
Look up table with window size of 7 days with SW_IN
.................80
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................3
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................336
Look up table with window size of 28 days with SW_IN VPD Tair
............390
Look up table with window size of 35 days with SW_IN VPD Tair
.........364
Look up table with window size of 42 days with SW_IN VPD Tair
.....280
Look up table with window size of 49 days with SW_IN VPD Tair
..173
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
21
Look up table with window size of 28 days with SW_IN
62
Finished gap filling of 'P' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
23
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
75
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.73
Look up table with window size of 14 days with SW_IN VPD Tair
26
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.143
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.176
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..265
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...285
Look up table with window size of 14 days with SW_IN VPD Tair
24
Look up table with window size of 7 days with SW_IN
13
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...373
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....460
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....382
Look up table with window size of 14 days with SW_IN VPD Tair
.137
Look up table with window size of 7 days with SW_IN
39
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......443
Look up table with window size of 14 days with SW_IN VPD Tair
..225
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........667
Look up table with window size of 14 days with SW_IN VPD Tair
.143
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........438
Look up table with window size of 14 days with SW_IN VPD Tair
.....476
Look up table with window size of 7 days with SW_IN
42
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
13
Look up table with window size of 28 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........439
Look up table with window size of 14 days with SW_IN VPD Tair
.......576
Look up table with window size of 7 days with SW_IN
.8
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.143
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............516
Look up table with window size of 14 days with SW_IN VPD Tair
........418
Look up table with window size of 7 days with SW_IN
....88
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...303
Look up table with window size of 28 days with SW_IN VPD Tair
58
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................530
Look up table with window size of 14 days with SW_IN VPD Tair
...........454
Look up table with window size of 7 days with SW_IN
......10
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......565
Look up table with window size of 28 days with SW_IN VPD Tair
.104
Look up table with window size of 35 days with SW_IN VPD Tair
11
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................431
Look up table with window size of 14 days with SW_IN VPD Tair
...............666
Look up table with window size of 7 days with SW_IN
.........131
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......517
Look up table with window size of 28 days with SW_IN VPD Tair
..259
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................558
Look up table with window size of 14 days with SW_IN VPD Tair
..................480
Look up table with window size of 7 days with SW_IN
.............35
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............623
Look up table with window size of 28 days with SW_IN VPD Tair
.......300
Look up table with window size of 35 days with SW_IN VPD Tair
....219
Look up table with window size of 42 days with SW_IN VPD Tair
.5
Look up table with window size of 49 days with SW_IN VPD Tair
.4
Look up table with window size of 56 days with SW_IN VPD Tair
.2
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.0
Look up table with window size of 21 days with SW_IN
.48
Look up table with window size of 28 days with SW_IN
.131
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................498
Look up table with window size of 14 days with SW_IN VPD Tair
.......................504
Look up table with window size of 7 days with SW_IN
..................0
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................658
Look up table with window size of 28 days with SW_IN VPD Tair
............505
Look up table with window size of 35 days with SW_IN VPD Tair
.......464
Look up table with window size of 42 days with SW_IN VPD Tair
..121
Look up table with window size of 49 days with SW_IN VPD Tair
.78
Look up table with window size of 56 days with SW_IN VPD Tair
40
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
39
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
42
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.85
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
13
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.144
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.173
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..213
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..242
Look up table with window size of 14 days with SW_IN VPD Tair
16
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...310
Look up table with window size of 14 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...346
Look up table with window size of 14 days with SW_IN VPD Tair
38
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....296
Look up table with window size of 14 days with SW_IN VPD Tair
.101
Look up table with window size of 7 days with SW_IN
71
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....467
Look up table with window size of 14 days with SW_IN VPD Tair
44
Look up table with window size of 7 days with SW_IN
51
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......458
Look up table with window size of 14 days with SW_IN VPD Tair
..76
Look up table with window size of 7 days with SW_IN
.123
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........510
Look up table with window size of 14 days with SW_IN VPD Tair
...282
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
12
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........279
Look up table with window size of 14 days with SW_IN VPD Tair
......409
Look up table with window size of 7 days with SW_IN
..249
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
30
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........290
Look up table with window size of 14 days with SW_IN VPD Tair
........380
Look up table with window size of 7 days with SW_IN
....184
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...204
Look up table with window size of 28 days with SW_IN VPD Tair
.100
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............329
Look up table with window size of 14 days with SW_IN VPD Tair
..........410
Look up table with window size of 7 days with SW_IN
......158
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....421
Look up table with window size of 28 days with SW_IN VPD Tair
64
Look up table with window size of 35 days with SW_IN VPD Tair
11
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................436
Look up table with window size of 14 days with SW_IN VPD Tair
............543
Look up table with window size of 7 days with SW_IN
......127
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....455
Look up table with window size of 28 days with SW_IN VPD Tair
.103
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................539
Look up table with window size of 14 days with SW_IN VPD Tair
..............467
Look up table with window size of 7 days with SW_IN
..........44
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........1
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........602
Look up table with window size of 28 days with SW_IN VPD Tair
...179
Look up table with window size of 35 days with SW_IN VPD Tair
.150
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
13
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................420
Look up table with window size of 14 days with SW_IN VPD Tair
...................542
Look up table with window size of 7 days with SW_IN
..............149
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............2
Look up table with window size of 21 days with SW_IN VPD Tair
............337
Look up table with window size of 28 days with SW_IN VPD Tair
.........416
Look up table with window size of 35 days with SW_IN VPD Tair
.....179
Look up table with window size of 42 days with SW_IN VPD Tair
...282
Look up table with window size of 49 days with SW_IN VPD Tair
25
Look up table with window size of 56 days with SW_IN VPD Tair
6
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
11
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
14
Look up table with window size of 35 days with SW_IN
11
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................271
Look up table with window size of 14 days with SW_IN VPD Tair
..........................703
Look up table with window size of 7 days with SW_IN
...................51
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................7
Mean diurnal course with window size of 2 days: .
..................6
Look up table with window size of 21 days with SW_IN VPD Tair
..................535
Look up table with window size of 28 days with SW_IN VPD Tair
.............656
Look up table with window size of 35 days with SW_IN VPD Tair
......450
Look up table with window size of 42 days with SW_IN VPD Tair
..127
Look up table with window size of 49 days with SW_IN VPD Tair
25
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
11
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
9
Look up table with window size of 28 days with SW_IN
9
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
17
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
78
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.92
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.180
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..188
Look up table with window size of 14 days with SW_IN VPD Tair
33
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..248
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...284
Look up table with window size of 14 days with SW_IN VPD Tair
38
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...227
Look up table with window size of 14 days with SW_IN VPD Tair
.63
Look up table with window size of 7 days with SW_IN
98
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....424
Look up table with window size of 14 days with SW_IN VPD Tair
42
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....479
Look up table with window size of 14 days with SW_IN VPD Tair
79
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......459
Look up table with window size of 14 days with SW_IN VPD Tair
..190
Look up table with window size of 7 days with SW_IN
19
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........413
Look up table with window size of 14 days with SW_IN VPD Tair
...164
Look up table with window size of 7 days with SW_IN
..97
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.130
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........376
Look up table with window size of 14 days with SW_IN VPD Tair
.....569
Look up table with window size of 7 days with SW_IN
18
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........390
Look up table with window size of 14 days with SW_IN VPD Tair
.......350
Look up table with window size of 7 days with SW_IN
....210
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..151
Look up table with window size of 28 days with SW_IN VPD Tair
50
Look up table with window size of 35 days with SW_IN VPD Tair
15
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............342
Look up table with window size of 14 days with SW_IN VPD Tair
..........570
Look up table with window size of 7 days with SW_IN
....69
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....325
Look up table with window size of 28 days with SW_IN VPD Tair
72
Look up table with window size of 35 days with SW_IN VPD Tair
19
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................558
Look up table with window size of 14 days with SW_IN VPD Tair
...........472
Look up table with window size of 7 days with SW_IN
......50
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....268
Look up table with window size of 28 days with SW_IN VPD Tair
...248
Look up table with window size of 35 days with SW_IN VPD Tair
25
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
27
Look up table with window size of 56 days with SW_IN VPD Tair
12
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................514
Look up table with window size of 14 days with SW_IN VPD Tair
..............666
Look up table with window size of 7 days with SW_IN
........6
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........592
Look up table with window size of 28 days with SW_IN VPD Tair
..173
Look up table with window size of 35 days with SW_IN VPD Tair
57
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................557
Look up table with window size of 14 days with SW_IN VPD Tair
..................620
Look up table with window size of 7 days with SW_IN
............7
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............5
Look up table with window size of 21 days with SW_IN VPD Tair
............349
Look up table with window size of 28 days with SW_IN VPD Tair
........618
Look up table with window size of 35 days with SW_IN VPD Tair
..69
Look up table with window size of 42 days with SW_IN VPD Tair
.60
Look up table with window size of 49 days with SW_IN VPD Tair
.6
Look up table with window size of 56 days with SW_IN VPD Tair
.0
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.16
Look up table with window size of 21 days with SW_IN
88
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
5
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................430
Look up table with window size of 14 days with SW_IN VPD Tair
........................722
Look up table with window size of 7 days with SW_IN
.................48
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................2
Look up table with window size of 21 days with SW_IN VPD Tair
................616
Look up table with window size of 28 days with SW_IN VPD Tair
..........628
Look up table with window size of 35 days with SW_IN VPD Tair
....361
Look up table with window size of 42 days with SW_IN VPD Tair
35
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
5
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
12
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
3
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
11
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.120
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.145
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.111
Look up table with window size of 14 days with SW_IN VPD Tair
16
Look up table with window size of 7 days with SW_IN
54
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..248
Look up table with window size of 14 days with SW_IN VPD Tair
18
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...316
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...317
Look up table with window size of 14 days with SW_IN VPD Tair
66
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....346
Look up table with window size of 14 days with SW_IN VPD Tair
.104
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....428
Look up table with window size of 14 days with SW_IN VPD Tair
.86
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
16
Look up table with window size of 28 days with SW_IN VPD Tair
15
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......282
Look up table with window size of 14 days with SW_IN VPD Tair
...341
Look up table with window size of 7 days with SW_IN
26
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
22
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........450
Look up table with window size of 14 days with SW_IN VPD Tair
...253
Look up table with window size of 7 days with SW_IN
.78
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
15
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........396
Look up table with window size of 14 days with SW_IN VPD Tair
.....456
Look up table with window size of 7 days with SW_IN
.112
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........578
Look up table with window size of 14 days with SW_IN VPD Tair
.....453
Look up table with window size of 7 days with SW_IN
.62
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
56
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
8
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............393
Look up table with window size of 14 days with SW_IN VPD Tair
..........789
Look up table with window size of 7 days with SW_IN
..15
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..200
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................629
Look up table with window size of 14 days with SW_IN VPD Tair
..........669
Look up table with window size of 7 days with SW_IN
...0
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...333
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
40
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................407
Look up table with window size of 14 days with SW_IN VPD Tair
................662
Look up table with window size of 7 days with SW_IN
.........69
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........594
Look up table with window size of 28 days with SW_IN VPD Tair
..200
Look up table with window size of 35 days with SW_IN VPD Tair
30
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
13
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................519
Look up table with window size of 14 days with SW_IN VPD Tair
..................723
Look up table with window size of 7 days with SW_IN
...........33
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........612
Look up table with window size of 28 days with SW_IN VPD Tair
.....507
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
7
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................499
Look up table with window size of 14 days with SW_IN VPD Tair
.......................586
Look up table with window size of 7 days with SW_IN
.................31
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................456
Look up table with window size of 28 days with SW_IN VPD Tair
.............752
Look up table with window size of 35 days with SW_IN VPD Tair
.....353
Look up table with window size of 42 days with SW_IN VPD Tair
..111
Look up table with window size of 49 days with SW_IN VPD Tair
86
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'P' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
22
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
45
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
79
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.90
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.118
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.130
Look up table with window size of 14 days with SW_IN VPD Tair
30
Look up table with window size of 7 days with SW_IN
22
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..132
Look up table with window size of 14 days with SW_IN VPD Tair
78
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..254
Look up table with window size of 14 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...281
Look up table with window size of 14 days with SW_IN VPD Tair
17
Look up table with window size of 7 days with SW_IN
21
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...380
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....304
Look up table with window size of 14 days with SW_IN VPD Tair
.162
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....513
Look up table with window size of 14 days with SW_IN VPD Tair
40
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......398
Look up table with window size of 14 days with SW_IN VPD Tair
..219
Look up table with window size of 7 days with SW_IN
57
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........443
Look up table with window size of 14 days with SW_IN VPD Tair
...347
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........305
Look up table with window size of 14 days with SW_IN VPD Tair
......377
Look up table with window size of 7 days with SW_IN
..214
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
77
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........502
Look up table with window size of 14 days with SW_IN VPD Tair
......447
Look up table with window size of 7 days with SW_IN
..7
Mean diurnal course with window size of 0 days: .
..1
Mean diurnal course with window size of 1 days: .
..3
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..195
Look up table with window size of 28 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............264
Look up table with window size of 14 days with SW_IN VPD Tair
...........380
Look up table with window size of 7 days with SW_IN
.......248
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....213
Look up table with window size of 28 days with SW_IN VPD Tair
..197
Look up table with window size of 35 days with SW_IN VPD Tair
61
Look up table with window size of 42 days with SW_IN VPD Tair
36
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................545
Look up table with window size of 14 days with SW_IN VPD Tair
...........533
Look up table with window size of 7 days with SW_IN
.....7
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....437
Look up table with window size of 28 days with SW_IN VPD Tair
.108
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
21
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................456
Look up table with window size of 14 days with SW_IN VPD Tair
...............449
Look up table with window size of 7 days with SW_IN
...........97
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........486
Look up table with window size of 28 days with SW_IN VPD Tair
.....493
Look up table with window size of 35 days with SW_IN VPD Tair
21
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................473
Look up table with window size of 14 days with SW_IN VPD Tair
...................622
Look up table with window size of 7 days with SW_IN
.............59
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............702
Look up table with window size of 28 days with SW_IN VPD Tair
.....424
Look up table with window size of 35 days with SW_IN VPD Tair
.33
Look up table with window size of 42 days with SW_IN VPD Tair
57
Look up table with window size of 49 days with SW_IN VPD Tair
12
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
14
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................465
Look up table with window size of 14 days with SW_IN VPD Tair
........................497
Look up table with window size of 7 days with SW_IN
...................45
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................610
Look up table with window size of 28 days with SW_IN VPD Tair
............654
Look up table with window size of 35 days with SW_IN VPD Tair
......272
Look up table with window size of 42 days with SW_IN VPD Tair
...95
Look up table with window size of 49 days with SW_IN VPD Tair
..71
Look up table with window size of 56 days with SW_IN VPD Tair
.41
Look up table with window size of 63 days with SW_IN VPD Tair
.19
Look up table with window size of 70 days with SW_IN VPD Tair
.18
Look up table with window size of 14 days with SW_IN
36
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
12
Look up table with window size of 35 days with SW_IN
11
Look up table with window size of 42 days with SW_IN
15
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
12
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.96
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.116
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..206
Look up table with window size of 14 days with SW_IN VPD Tair
12
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...288
Look up table with window size of 14 days with SW_IN VPD Tair
34
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...308
Look up table with window size of 14 days with SW_IN VPD Tair
66
Look up table with window size of 7 days with SW_IN
14
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....364
Look up table with window size of 14 days with SW_IN VPD Tair
.55
Look up table with window size of 7 days with SW_IN
49
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....404
Look up table with window size of 14 days with SW_IN VPD Tair
.70
Look up table with window size of 7 days with SW_IN
77
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
9
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......485
Look up table with window size of 14 days with SW_IN VPD Tair
.136
Look up table with window size of 7 days with SW_IN
38
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........471
Look up table with window size of 14 days with SW_IN VPD Tair
...298
Look up table with window size of 7 days with SW_IN
16
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
13
Look up table with window size of 42 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........274
Look up table with window size of 14 days with SW_IN VPD Tair
......287
Look up table with window size of 7 days with SW_IN
....324
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
79
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........444
Look up table with window size of 14 days with SW_IN VPD Tair
.......505
Look up table with window size of 7 days with SW_IN
..28
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.135
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
26
Look up table with window size of 21 days with SW_IN
15
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............518
Look up table with window size of 14 days with SW_IN VPD Tair
........524
Look up table with window size of 7 days with SW_IN
...47
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...2
Look up table with window size of 21 days with SW_IN VPD Tair
...188
Look up table with window size of 28 days with SW_IN VPD Tair
.83
Look up table with window size of 35 days with SW_IN VPD Tair
15
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
14
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................511
Look up table with window size of 14 days with SW_IN VPD Tair
...........522
Look up table with window size of 7 days with SW_IN
......92
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....300
Look up table with window size of 28 days with SW_IN VPD Tair
..188
Look up table with window size of 35 days with SW_IN VPD Tair
54
Look up table with window size of 42 days with SW_IN VPD Tair
9
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................549
Look up table with window size of 14 days with SW_IN VPD Tair
..............635
Look up table with window size of 7 days with SW_IN
........104
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......478
Look up table with window size of 28 days with SW_IN VPD Tair
..189
Look up table with window size of 35 days with SW_IN VPD Tair
45
Look up table with window size of 42 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................407
Look up table with window size of 14 days with SW_IN VPD Tair
...................574
Look up table with window size of 7 days with SW_IN
..............46
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............1
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............621
Look up table with window size of 28 days with SW_IN VPD Tair
.......627
Look up table with window size of 35 days with SW_IN VPD Tair
.34
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
8
Look up table with window size of 56 days with SW_IN VPD Tair
11
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
43
Look up table with window size of 21 days with SW_IN
20
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................526
Look up table with window size of 14 days with SW_IN VPD Tair
.......................596
Look up table with window size of 7 days with SW_IN
.................23
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................498
Look up table with window size of 28 days with SW_IN VPD Tair
............382
Look up table with window size of 35 days with SW_IN VPD Tair
........364
Look up table with window size of 42 days with SW_IN VPD Tair
....276
Look up table with window size of 49 days with SW_IN VPD Tair
..112
Look up table with window size of 56 days with SW_IN VPD Tair
.24
Look up table with window size of 63 days with SW_IN VPD Tair
11
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
12
Look up table with window size of 28 days with SW_IN
25
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
16
Look up table with window size of 49 days with SW_IN
8
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
23
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
49
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.138
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.175
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..240
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
23
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...316
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...388
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....437
Look up table with window size of 14 days with SW_IN VPD Tair
30
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....501
Look up table with window size of 14 days with SW_IN VPD Tair
59
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......426
Look up table with window size of 14 days with SW_IN VPD Tair
..195
Look up table with window size of 7 days with SW_IN
42
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........546
Look up table with window size of 14 days with SW_IN VPD Tair
..201
Look up table with window size of 7 days with SW_IN
60
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........205
Look up table with window size of 14 days with SW_IN VPD Tair
.......357
Look up table with window size of 7 days with SW_IN
....343
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
65
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........518
Look up table with window size of 14 days with SW_IN VPD Tair
......504
Look up table with window size of 7 days with SW_IN
.79
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
66
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............392
Look up table with window size of 14 days with SW_IN VPD Tair
..........635
Look up table with window size of 7 days with SW_IN
...179
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.173
Look up table with window size of 28 days with SW_IN VPD Tair
19
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................468
Look up table with window size of 14 days with SW_IN VPD Tair
............643
Look up table with window size of 7 days with SW_IN
.....67
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....474
Look up table with window size of 28 days with SW_IN VPD Tair
22
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................487
Look up table with window size of 14 days with SW_IN VPD Tair
...............696
Look up table with window size of 7 days with SW_IN
........3
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........660
Look up table with window size of 28 days with SW_IN VPD Tair
.143
Look up table with window size of 35 days with SW_IN VPD Tair
16
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................405
Look up table with window size of 14 days with SW_IN VPD Tair
....................578
Look up table with window size of 7 days with SW_IN
..............12
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............801
Look up table with window size of 28 days with SW_IN VPD Tair
......564
Look up table with window size of 35 days with SW_IN VPD Tair
37
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'P' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................359
Look up table with window size of 14 days with SW_IN VPD Tair
.........................357
Look up table with window size of 7 days with SW_IN
.....................60
Mean diurnal course with window size of 0 days: .
.....................0
Mean diurnal course with window size of 1 days: .
.....................0
Mean diurnal course with window size of 2 days: .
.....................0
Look up table with window size of 21 days with SW_IN VPD Tair
.....................310
Look up table with window size of 28 days with SW_IN VPD Tair
.................554
Look up table with window size of 35 days with SW_IN VPD Tair
............613
Look up table with window size of 42 days with SW_IN VPD Tair
......247
Look up table with window size of 49 days with SW_IN VPD Tair
...69
Look up table with window size of 56 days with SW_IN VPD Tair
...16
Look up table with window size of 63 days with SW_IN VPD Tair
..37
Look up table with window size of 70 days with SW_IN VPD Tair
..91
Look up table with window size of 14 days with SW_IN
.122
Look up table with window size of 21 days with SW_IN
24
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
9
Look up table with window size of 49 days with SW_IN
3
Finished gap filling of 'P' in 11 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
29
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
29
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.149
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...318
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...369
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....432
Look up table with window size of 14 days with SW_IN VPD Tair
33
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....483
Look up table with window size of 14 days with SW_IN VPD Tair
56
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
15
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......594
Look up table with window size of 14 days with SW_IN VPD Tair
76
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........316
Look up table with window size of 14 days with SW_IN VPD Tair
....324
Look up table with window size of 7 days with SW_IN
.171
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........370
Look up table with window size of 14 days with SW_IN VPD Tair
......341
Look up table with window size of 7 days with SW_IN
..215
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
43
Look up table with window size of 28 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........593
Look up table with window size of 14 days with SW_IN VPD Tair
.....531
Look up table with window size of 7 days with SW_IN
19
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
23
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............489
Look up table with window size of 14 days with SW_IN VPD Tair
.........563
Look up table with window size of 7 days with SW_IN
...67
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..192
Look up table with window size of 28 days with SW_IN VPD Tair
39
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
17
Look up table with window size of 49 days with SW_IN VPD Tair
13
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
6
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................447
Look up table with window size of 14 days with SW_IN VPD Tair
............652
Look up table with window size of 7 days with SW_IN
.....41
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....483
Look up table with window size of 28 days with SW_IN VPD Tair
37
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................585
Look up table with window size of 14 days with SW_IN VPD Tair
..............665
Look up table with window size of 7 days with SW_IN
.......4
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......567
Look up table with window size of 28 days with SW_IN VPD Tair
.157
Look up table with window size of 35 days with SW_IN VPD Tair
29
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................611
Look up table with window size of 14 days with SW_IN VPD Tair
.................497
Look up table with window size of 7 days with SW_IN
............10
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............626
Look up table with window size of 28 days with SW_IN VPD Tair
......591
Look up table with window size of 35 days with SW_IN VPD Tair
60
Look up table with window size of 42 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................281
Look up table with window size of 14 days with SW_IN VPD Tair
.........................478
Look up table with window size of 7 days with SW_IN
.....................188
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................644
Look up table with window size of 28 days with SW_IN VPD Tair
............553
Look up table with window size of 35 days with SW_IN VPD Tair
.......507
Look up table with window size of 42 days with SW_IN VPD Tair
..90
Look up table with window size of 49 days with SW_IN VPD Tair
.55
Look up table with window size of 56 days with SW_IN VPD Tair
60
Look up table with window size of 63 days with SW_IN VPD Tair
16
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
31
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...353
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....462
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....397
Look up table with window size of 14 days with SW_IN VPD Tair
.64
Look up table with window size of 7 days with SW_IN
.101
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......553
Look up table with window size of 14 days with SW_IN VPD Tair
.120
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........515
Look up table with window size of 14 days with SW_IN VPD Tair
..195
Look up table with window size of 7 days with SW_IN
.34
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
31
Look up table with window size of 28 days with SW_IN VPD Tair
18
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........510
Look up table with window size of 14 days with SW_IN VPD Tair
....377
Look up table with window size of 7 days with SW_IN
44
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
9
Look up table with window size of 21 days with SW_IN VPD Tair
26
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........376
Look up table with window size of 14 days with SW_IN VPD Tair
.......507
Look up table with window size of 7 days with SW_IN
..40
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..234
Look up table with window size of 28 days with SW_IN VPD Tair
10
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............593
Look up table with window size of 14 days with SW_IN VPD Tair
........607
Look up table with window size of 7 days with SW_IN
.21
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.2
Mean diurnal course with window size of 2 days: .
.2
Look up table with window size of 21 days with SW_IN VPD Tair
.172
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................518
Look up table with window size of 14 days with SW_IN VPD Tair
...........398
Look up table with window size of 7 days with SW_IN
.......12
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......391
Look up table with window size of 28 days with SW_IN VPD Tair
...350
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................469
Look up table with window size of 14 days with SW_IN VPD Tair
...............526
Look up table with window size of 7 days with SW_IN
..........48
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........595
Look up table with window size of 28 days with SW_IN VPD Tair
...162
Look up table with window size of 35 days with SW_IN VPD Tair
..132
Look up table with window size of 42 days with SW_IN VPD Tair
48
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
12
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'P' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................441
Look up table with window size of 14 days with SW_IN VPD Tair
...................376
Look up table with window size of 7 days with SW_IN
...............56
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............0
Mean diurnal course with window size of 2 days: .
...............0
Look up table with window size of 21 days with SW_IN VPD Tair
...............685
Look up table with window size of 28 days with SW_IN VPD Tair
........620
Look up table with window size of 35 days with SW_IN VPD Tair
..174
Look up table with window size of 42 days with SW_IN VPD Tair
28
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
23
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'P' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................511
Look up table with window size of 14 days with SW_IN VPD Tair
.......................507
Look up table with window size of 7 days with SW_IN
..................19
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................2
Look up table with window size of 21 days with SW_IN VPD Tair
..................725
Look up table with window size of 28 days with SW_IN VPD Tair
...........560
Look up table with window size of 35 days with SW_IN VPD Tair
.....400
Look up table with window size of 42 days with SW_IN VPD Tair
.104
Look up table with window size of 49 days with SW_IN VPD Tair
20
Look up table with window size of 56 days with SW_IN VPD Tair
8
Look up table with window size of 63 days with SW_IN VPD Tair
7
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
3
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
5
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'P' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
23
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
27
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.105
Look up table with window size of 14 days with SW_IN VPD Tair
17
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.149
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..143
Look up table with window size of 14 days with SW_IN VPD Tair
78
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...295
Look up table with window size of 14 days with SW_IN VPD Tair
27
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...340
Look up table with window size of 14 days with SW_IN VPD Tair
48
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....401
Look up table with window size of 14 days with SW_IN VPD Tair
34
Look up table with window size of 7 days with SW_IN
27
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
3
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....522
Look up table with window size of 14 days with SW_IN VPD Tair
39
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......471
Look up table with window size of 14 days with SW_IN VPD Tair
..191
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........412
Look up table with window size of 14 days with SW_IN VPD Tair
...331
Look up table with window size of 7 days with SW_IN
55
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........535
Look up table with window size of 14 days with SW_IN VPD Tair
....405
Look up table with window size of 7 days with SW_IN
17
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
16
Finished gap filling of 'P' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........527
Look up table with window size of 14 days with SW_IN VPD Tair
......478
Look up table with window size of 7 days with SW_IN
.80
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
40
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
8
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
27
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............368
Look up table with window size of 14 days with SW_IN VPD Tair
..........722
Look up table with window size of 7 days with SW_IN
...31
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..265
Look up table with window size of 28 days with SW_IN VPD Tair
13
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................384
Look up table with window size of 14 days with SW_IN VPD Tair
............356
Look up table with window size of 7 days with SW_IN
.........122
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........642
Look up table with window size of 28 days with SW_IN VPD Tair
.143
Look up table with window size of 35 days with SW_IN VPD Tair
15
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
9
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................537
Look up table with window size of 14 days with SW_IN VPD Tair
..............712
Look up table with window size of 7 days with SW_IN
.......8
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......575
Look up table with window size of 28 days with SW_IN VPD Tair
.124
Look up table with window size of 35 days with SW_IN VPD Tair
27
Look up table with window size of 42 days with SW_IN VPD Tair
21
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'P' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................540
Look up table with window size of 14 days with SW_IN VPD Tair
..................598
Look up table with window size of 7 days with SW_IN
............38
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............532
Look up table with window size of 28 days with SW_IN VPD Tair
......396
Look up table with window size of 35 days with SW_IN VPD Tair
...156
Look up table with window size of 42 days with SW_IN VPD Tair
.81
Look up table with window size of 49 days with SW_IN VPD Tair
13
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
18
Look up table with window size of 35 days with SW_IN
20
Look up table with window size of 42 days with SW_IN
4
Finished gap filling of 'P' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'P' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'P.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................488
Look up table with window size of 14 days with SW_IN VPD Tair
.......................632
Look up table with window size of 7 days with SW_IN
.................0
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................338
Look up table with window size of 28 days with SW_IN VPD Tair
..............532
Look up table with window size of 35 days with SW_IN VPD Tair
........471
Look up table with window size of 42 days with SW_IN VPD Tair
....247
Look up table with window size of 49 days with SW_IN VPD Tair
.126
Look up table with window size of 56 days with SW_IN VPD Tair
36
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'P' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
# A tibble: 30 × 5
   gap_length   mean     sd error_high error_low
        <int>  <dbl>  <dbl>      <dbl>     <dbl>
 1          1 0.0599 0.120       0.180  -0.0601 
 2          4 0.0798 0.162       0.242  -0.0825 
 3          8 0.0907 0.198       0.289  -0.107  
 4         12 0.0957 0.156       0.252  -0.0604 
 5         17 0.103  0.117       0.220  -0.0137 
 6         24 0.0721 0.0734      0.145  -0.00129
 7         32 0.195  0.398       0.592  -0.203  
 8         41 0.161  0.204       0.365  -0.0424 
 9         52 0.127  0.199       0.326  -0.0723 
10         65 0.209  0.332       0.541  -0.123  
# … with 20 more rows
```

```r
P_rmse_stat %>%
  mutate(gap_length = gap_length / 2) %>%
  ggplot(aes(gap_length)) +
  geom_ribbon(aes(ymin = error_low, ymax = error_high), alpha = .7) +
  geom_line(aes(y=mean)) +
  labs(x = "Gap Lengths [hours]", y = "RMSE [mm]")
```

<img src="figure/MDS_gap_filling_quality.rmd/unnamed-chunk-16-1.png" width="672" style="display: block; margin: auto;" />

PA

knit_template("analysis/fragments/variable_assess_gapfilling.rmd", var = "PA", unit="Pa")

```r
cache_rds({
  # go up to 60 days which is the maximium gap is going to be filled
    # 1.1 is needed because for some unknown reasons, when converting to interger 1 becomes 0 (maybe some floating point related issue)
    gaps_lengths <-  seq_log(1.1, 24 * 2 * 30 * 2 , offset = 15, length.out = 30) %>%
            rep(n_rep) %>%
            as.integer()

    PA_rmse <- gaps_lengths %>%
            split_vector(n_workers) %>%
            future_map_dfr(~gap_fill_EProc_rmse(hai, "PA", .x))

    PA_rmse_stat <- PA_rmse %>%
      group_by(gap_length) %>%
      summarise(mean = mean(rmse), sd = sd(rmse)) %>%
        mutate(error_high = mean + sd, error_low = mean - sd)
})
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'PA' with 1 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
1
```

```
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'PA' with 4 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
4
```

```
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'PA' with 8 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
8
```

```
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'PA' with 12 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
12
```

```
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'PA' with 17 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
17
```

```
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'PA' with 24 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
24
```

```
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'PA' with 32 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
32
```

```
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'PA' with 41 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
41
```

```
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'PA' with 52 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
51
```

```
Look up table with window size of 14 days with SW_IN VPD Tair
```

```
1
```

```
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'PA' with 65 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
59
```

```
Look up table with window size of 14 days with SW_IN VPD Tair
```

```
0
```

```
Look up table with window size of 7 days with SW_IN
```

```
5
```

```
Mean diurnal course with window size of 0 days: .
```

```
0
```

```
Mean diurnal course with window size of 1 days: .
```

```
1
```

```
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'PA' with 81 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
81
```

```
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'PA' with 100 real gaps for gap filling.
```

```
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
```

```
Look up table with window size of 7 days with SW_IN VPD Tair
```

```
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.120
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.149
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.170
Look up table with window size of 14 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..255
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...314
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...388
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....278
Look up table with window size of 14 days with SW_IN VPD Tair
.76
Look up table with window size of 7 days with SW_IN
.105
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....339
Look up table with window size of 14 days with SW_IN VPD Tair
..147
Look up table with window size of 7 days with SW_IN
76
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......424
Look up table with window size of 14 days with SW_IN VPD Tair
..228
Look up table with window size of 7 days with SW_IN
23
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........540
Look up table with window size of 14 days with SW_IN VPD Tair
..265
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........546
Look up table with window size of 14 days with SW_IN VPD Tair
....360
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
55
Look up table with window size of 28 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........506
Look up table with window size of 14 days with SW_IN VPD Tair
......519
Look up table with window size of 7 days with SW_IN
.33
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.96
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............424
Look up table with window size of 14 days with SW_IN VPD Tair
.........460
Look up table with window size of 7 days with SW_IN
.....113
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....348
Look up table with window size of 28 days with SW_IN VPD Tair
51
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................642
Look up table with window size of 14 days with SW_IN VPD Tair
..........494
Look up table with window size of 7 days with SW_IN
.....6
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....6
Look up table with window size of 21 days with SW_IN VPD Tair
.....328
Look up table with window size of 28 days with SW_IN VPD Tair
..174
Look up table with window size of 35 days with SW_IN VPD Tair
22
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................502
Look up table with window size of 14 days with SW_IN VPD Tair
...............501
Look up table with window size of 7 days with SW_IN
..........1
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........1
Look up table with window size of 21 days with SW_IN VPD Tair
..........455
Look up table with window size of 28 days with SW_IN VPD Tair
.....515
Look up table with window size of 35 days with SW_IN VPD Tair
12
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
4
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................489
Look up table with window size of 14 days with SW_IN VPD Tair
...................515
Look up table with window size of 7 days with SW_IN
..............35
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............533
Look up table with window size of 28 days with SW_IN VPD Tair
........475
Look up table with window size of 35 days with SW_IN VPD Tair
...179
Look up table with window size of 42 days with SW_IN VPD Tair
.101
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
62
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
5
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
2
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................601
Look up table with window size of 14 days with SW_IN VPD Tair
......................528
Look up table with window size of 7 days with SW_IN
.................17
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................678
Look up table with window size of 28 days with SW_IN VPD Tair
..........520
Look up table with window size of 35 days with SW_IN VPD Tair
.....240
Look up table with window size of 42 days with SW_IN VPD Tair
..129
Look up table with window size of 49 days with SW_IN VPD Tair
.77
Look up table with window size of 56 days with SW_IN VPD Tair
33
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
25
Look up table with window size of 35 days with SW_IN
10
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
7
Finished gap filling of 'PA' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
16
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
25
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
50
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.178
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...308
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...310
Look up table with window size of 14 days with SW_IN VPD Tair
69
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....455
Look up table with window size of 14 days with SW_IN VPD Tair
13
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....455
Look up table with window size of 14 days with SW_IN VPD Tair
.101
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......439
Look up table with window size of 14 days with SW_IN VPD Tair
..177
Look up table with window size of 7 days with SW_IN
55
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........377
Look up table with window size of 14 days with SW_IN VPD Tair
....355
Look up table with window size of 7 days with SW_IN
44
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
15
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
16
Look up table with window size of 42 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........557
Look up table with window size of 14 days with SW_IN VPD Tair
....398
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........437
Look up table with window size of 14 days with SW_IN VPD Tair
.......550
Look up table with window size of 7 days with SW_IN
.93
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
74
Look up table with window size of 28 days with SW_IN VPD Tair
8
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............450
Look up table with window size of 14 days with SW_IN VPD Tair
.........644
Look up table with window size of 7 days with SW_IN
...105
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..197
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................419
Look up table with window size of 14 days with SW_IN VPD Tair
............791
Look up table with window size of 7 days with SW_IN
....63
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....389
Look up table with window size of 28 days with SW_IN VPD Tair
13
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................560
Look up table with window size of 14 days with SW_IN VPD Tair
..............345
Look up table with window size of 7 days with SW_IN
...........56
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........676
Look up table with window size of 28 days with SW_IN VPD Tair
...203
Look up table with window size of 35 days with SW_IN VPD Tair
.22
Look up table with window size of 42 days with SW_IN VPD Tair
.4
Look up table with window size of 49 days with SW_IN VPD Tair
.63
Look up table with window size of 56 days with SW_IN VPD Tair
50
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
25
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................468
Look up table with window size of 14 days with SW_IN VPD Tair
...................570
Look up table with window size of 7 days with SW_IN
.............25
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............477
Look up table with window size of 28 days with SW_IN VPD Tair
........533
Look up table with window size of 35 days with SW_IN VPD Tair
...215
Look up table with window size of 42 days with SW_IN VPD Tair
.102
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................366
Look up table with window size of 14 days with SW_IN VPD Tair
.........................567
Look up table with window size of 7 days with SW_IN
...................188
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................467
Look up table with window size of 28 days with SW_IN VPD Tair
............461
Look up table with window size of 35 days with SW_IN VPD Tair
........341
Look up table with window size of 42 days with SW_IN VPD Tair
....235
Look up table with window size of 49 days with SW_IN VPD Tair
..129
Look up table with window size of 56 days with SW_IN VPD Tair
.28
Look up table with window size of 63 days with SW_IN VPD Tair
43
Look up table with window size of 70 days with SW_IN VPD Tair
13
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
8
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
5
Look up table with window size of 42 days with SW_IN
7
Look up table with window size of 49 days with SW_IN
5
Look up table with window size of 56 days with SW_IN
8
Finished gap filling of 'PA' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.97
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.131
Look up table with window size of 14 days with SW_IN VPD Tair
19
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...265
Look up table with window size of 14 days with SW_IN VPD Tair
46
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...381
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....345
Look up table with window size of 14 days with SW_IN VPD Tair
.109
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....428
Look up table with window size of 14 days with SW_IN VPD Tair
.117
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......477
Look up table with window size of 14 days with SW_IN VPD Tair
.189
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........508
Look up table with window size of 14 days with SW_IN VPD Tair
...247
Look up table with window size of 7 days with SW_IN
55
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........473
Look up table with window size of 14 days with SW_IN VPD Tair
.....356
Look up table with window size of 7 days with SW_IN
.132
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........547
Look up table with window size of 14 days with SW_IN VPD Tair
......422
Look up table with window size of 7 days with SW_IN
.38
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.139
Look up table with window size of 28 days with SW_IN VPD Tair
18
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............446
Look up table with window size of 14 days with SW_IN VPD Tair
.........585
Look up table with window size of 7 days with SW_IN
...89
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..205
Look up table with window size of 28 days with SW_IN VPD Tair
30
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
13
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................411
Look up table with window size of 14 days with SW_IN VPD Tair
............642
Look up table with window size of 7 days with SW_IN
......81
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....427
Look up table with window size of 28 days with SW_IN VPD Tair
.115
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................529
Look up table with window size of 14 days with SW_IN VPD Tair
..............498
Look up table with window size of 7 days with SW_IN
.........20
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........3
Mean diurnal course with window size of 2 days: .
.........3
Look up table with window size of 21 days with SW_IN VPD Tair
.........716
Look up table with window size of 28 days with SW_IN VPD Tair
..135
Look up table with window size of 35 days with SW_IN VPD Tair
.18
Look up table with window size of 42 days with SW_IN VPD Tair
25
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
29
Look up table with window size of 35 days with SW_IN
13
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................531
Look up table with window size of 14 days with SW_IN VPD Tair
..................609
Look up table with window size of 7 days with SW_IN
............3
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............435
Look up table with window size of 28 days with SW_IN VPD Tair
........556
Look up table with window size of 35 days with SW_IN VPD Tair
..195
Look up table with window size of 42 days with SW_IN VPD Tair
44
Look up table with window size of 49 days with SW_IN VPD Tair
21
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
7
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................406
Look up table with window size of 14 days with SW_IN VPD Tair
........................448
Look up table with window size of 7 days with SW_IN
....................126
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................362
Look up table with window size of 28 days with SW_IN VPD Tair
...............576
Look up table with window size of 35 days with SW_IN VPD Tair
.........519
Look up table with window size of 42 days with SW_IN VPD Tair
....142
Look up table with window size of 49 days with SW_IN VPD Tair
...47
Look up table with window size of 56 days with SW_IN VPD Tair
..11
Look up table with window size of 63 days with SW_IN VPD Tair
..33
Look up table with window size of 70 days with SW_IN VPD Tair
..90
Look up table with window size of 14 days with SW_IN
.94
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
11
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
3
Finished gap filling of 'PA' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.89
Look up table with window size of 14 days with SW_IN VPD Tair
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.120
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..208
Look up table with window size of 14 days with SW_IN VPD Tair
13
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...245
Look up table with window size of 14 days with SW_IN VPD Tair
66
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...199
Look up table with window size of 14 days with SW_IN VPD Tair
.187
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....406
Look up table with window size of 14 days with SW_IN VPD Tair
61
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....448
Look up table with window size of 14 days with SW_IN VPD Tair
.89
Look up table with window size of 7 days with SW_IN
25
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......436
Look up table with window size of 14 days with SW_IN VPD Tair
..174
Look up table with window size of 7 days with SW_IN
45
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
16
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........422
Look up table with window size of 14 days with SW_IN VPD Tair
...336
Look up table with window size of 7 days with SW_IN
44
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
9
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........437
Look up table with window size of 14 days with SW_IN VPD Tair
.....407
Look up table with window size of 7 days with SW_IN
.96
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
29
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........447
Look up table with window size of 14 days with SW_IN VPD Tair
.......561
Look up table with window size of 7 days with SW_IN
.63
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
55
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
33
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............379
Look up table with window size of 14 days with SW_IN VPD Tair
..........541
Look up table with window size of 7 days with SW_IN
....38
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....375
Look up table with window size of 28 days with SW_IN VPD Tair
54
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................472
Look up table with window size of 14 days with SW_IN VPD Tair
............653
Look up table with window size of 7 days with SW_IN
.....17
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....479
Look up table with window size of 28 days with SW_IN VPD Tair
33
Look up table with window size of 35 days with SW_IN VPD Tair
17
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................590
Look up table with window size of 14 days with SW_IN VPD Tair
..............609
Look up table with window size of 7 days with SW_IN
........5
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........1
Look up table with window size of 28 days with SW_IN VPD Tair
........3
Look up table with window size of 35 days with SW_IN VPD Tair
........49
Look up table with window size of 42 days with SW_IN VPD Tair
.......0
Look up table with window size of 49 days with SW_IN VPD Tair
.......0
Look up table with window size of 56 days with SW_IN VPD Tair
.......0
Look up table with window size of 63 days with SW_IN VPD Tair
.......3
Look up table with window size of 70 days with SW_IN VPD Tair
.......0
Look up table with window size of 14 days with SW_IN
.......64
Look up table with window size of 21 days with SW_IN
......676
Look up table with window size of 28 days with SW_IN
8
Finished gap filling of 'PA' in 11 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................656
Look up table with window size of 14 days with SW_IN VPD Tair
.................548
Look up table with window size of 7 days with SW_IN
............1
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............5
Mean diurnal course with window size of 2 days: .
...........3
Look up table with window size of 21 days with SW_IN VPD Tair
...........549
Look up table with window size of 28 days with SW_IN VPD Tair
......576
Look up table with window size of 35 days with SW_IN VPD Tair
55
Look up table with window size of 42 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................505
Look up table with window size of 14 days with SW_IN VPD Tair
.......................630
Look up table with window size of 7 days with SW_IN
.................28
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................1
Look up table with window size of 21 days with SW_IN VPD Tair
.................601
Look up table with window size of 28 days with SW_IN VPD Tair
...........538
Look up table with window size of 35 days with SW_IN VPD Tair
.....321
Look up table with window size of 42 days with SW_IN VPD Tair
..87
Look up table with window size of 49 days with SW_IN VPD Tair
.85
Look up table with window size of 56 days with SW_IN VPD Tair
28
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
10
Look up table with window size of 28 days with SW_IN
15
Look up table with window size of 35 days with SW_IN
17
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
11
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
61
Look up table with window size of 14 days with SW_IN VPD Tair
18
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..191
Look up table with window size of 14 days with SW_IN VPD Tair
24
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..246
Look up table with window size of 14 days with SW_IN VPD Tair
21
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...316
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...306
Look up table with window size of 14 days with SW_IN VPD Tair
80
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....366
Look up table with window size of 14 days with SW_IN VPD Tair
.100
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....473
Look up table with window size of 14 days with SW_IN VPD Tair
48
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......375
Look up table with window size of 14 days with SW_IN VPD Tair
...226
Look up table with window size of 7 days with SW_IN
72
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........378
Look up table with window size of 14 days with SW_IN VPD Tair
....384
Look up table with window size of 7 days with SW_IN
45
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........559
Look up table with window size of 14 days with SW_IN VPD Tair
....388
Look up table with window size of 7 days with SW_IN
16
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........527
Look up table with window size of 14 days with SW_IN VPD Tair
......385
Look up table with window size of 7 days with SW_IN
..0
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..247
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............274
Look up table with window size of 14 days with SW_IN VPD Tair
...........490
Look up table with window size of 7 days with SW_IN
......284
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...1
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...310
Look up table with window size of 28 days with SW_IN VPD Tair
22
Look up table with window size of 35 days with SW_IN VPD Tair
15
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................420
Look up table with window size of 14 days with SW_IN VPD Tair
............558
Look up table with window size of 7 days with SW_IN
......93
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......551
Look up table with window size of 28 days with SW_IN VPD Tair
42
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................462
Look up table with window size of 14 days with SW_IN VPD Tair
...............661
Look up table with window size of 7 days with SW_IN
........5
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........522
Look up table with window size of 28 days with SW_IN VPD Tair
...292
Look up table with window size of 35 days with SW_IN VPD Tair
45
Look up table with window size of 42 days with SW_IN VPD Tair
19
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................397
Look up table with window size of 14 days with SW_IN VPD Tair
....................572
Look up table with window size of 7 days with SW_IN
..............204
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............1
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............610
Look up table with window size of 28 days with SW_IN VPD Tair
......584
Look up table with window size of 35 days with SW_IN VPD Tair
31
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................562
Look up table with window size of 14 days with SW_IN VPD Tair
.......................592
Look up table with window size of 7 days with SW_IN
.................4
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................641
Look up table with window size of 28 days with SW_IN VPD Tair
..........620
Look up table with window size of 35 days with SW_IN VPD Tair
....278
Look up table with window size of 42 days with SW_IN VPD Tair
.86
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
16
Look up table with window size of 63 days with SW_IN VPD Tair
11
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
58
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
20
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.97
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.162
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..122
Look up table with window size of 14 days with SW_IN VPD Tair
.57
Look up table with window size of 7 days with SW_IN
88
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...311
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...380
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....467
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....427
Look up table with window size of 14 days with SW_IN VPD Tair
.90
Look up table with window size of 7 days with SW_IN
45
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......530
Look up table with window size of 14 days with SW_IN VPD Tair
.136
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........408
Look up table with window size of 14 days with SW_IN VPD Tair
....377
Look up table with window size of 7 days with SW_IN
18
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........557
Look up table with window size of 14 days with SW_IN VPD Tair
....366
Look up table with window size of 7 days with SW_IN
49
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........485
Look up table with window size of 14 days with SW_IN VPD Tair
......565
Look up table with window size of 7 days with SW_IN
.65
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
50
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............429
Look up table with window size of 14 days with SW_IN VPD Tair
.........764
Look up table with window size of 7 days with SW_IN
..22
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.3
Look up table with window size of 21 days with SW_IN VPD Tair
.113
Look up table with window size of 28 days with SW_IN VPD Tair
60
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................484
Look up table with window size of 14 days with SW_IN VPD Tair
...........458
Look up table with window size of 7 days with SW_IN
.......13
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......598
Look up table with window size of 28 days with SW_IN VPD Tair
.114
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................259
Look up table with window size of 14 days with SW_IN VPD Tair
.................773
Look up table with window size of 7 days with SW_IN
.........30
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........724
Look up table with window size of 28 days with SW_IN VPD Tair
..216
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................512
Look up table with window size of 14 days with SW_IN VPD Tair
..................601
Look up table with window size of 7 days with SW_IN
............62
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............715
Look up table with window size of 28 days with SW_IN VPD Tair
.....385
Look up table with window size of 35 days with SW_IN VPD Tair
.95
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
18
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................455
Look up table with window size of 14 days with SW_IN VPD Tair
........................671
Look up table with window size of 7 days with SW_IN
.................24
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................1
Mean diurnal course with window size of 2 days: .
.................8
Look up table with window size of 21 days with SW_IN VPD Tair
.................576
Look up table with window size of 28 days with SW_IN VPD Tair
...........703
Look up table with window size of 35 days with SW_IN VPD Tair
....371
Look up table with window size of 42 days with SW_IN VPD Tair
43
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
8
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
16
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
50
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.180
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..205
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
16
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..253
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...336
Look up table with window size of 14 days with SW_IN VPD Tair
22
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
9
Mean diurnal course with window size of 2 days: .
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....459
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....375
Look up table with window size of 14 days with SW_IN VPD Tair
.127
Look up table with window size of 7 days with SW_IN
59
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......279
Look up table with window size of 14 days with SW_IN VPD Tair
...251
Look up table with window size of 7 days with SW_IN
.142
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........474
Look up table with window size of 14 days with SW_IN VPD Tair
...330
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........492
Look up table with window size of 14 days with SW_IN VPD Tair
....329
Look up table with window size of 7 days with SW_IN
.48
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.104
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........534
Look up table with window size of 14 days with SW_IN VPD Tair
......514
Look up table with window size of 7 days with SW_IN
.6
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.107
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............503
Look up table with window size of 14 days with SW_IN VPD Tair
........609
Look up table with window size of 7 days with SW_IN
..17
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..254
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................575
Look up table with window size of 14 days with SW_IN VPD Tair
...........596
Look up table with window size of 7 days with SW_IN
.....25
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....385
Look up table with window size of 28 days with SW_IN VPD Tair
52
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
17
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................315
Look up table with window size of 14 days with SW_IN VPD Tair
................747
Look up table with window size of 7 days with SW_IN
.........116
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........466
Look up table with window size of 28 days with SW_IN VPD Tair
...329
Look up table with window size of 35 days with SW_IN VPD Tair
11
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
10
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................479
Look up table with window size of 14 days with SW_IN VPD Tair
...................493
Look up table with window size of 7 days with SW_IN
..............72
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............1
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............605
Look up table with window size of 28 days with SW_IN VPD Tair
.......367
Look up table with window size of 35 days with SW_IN VPD Tair
...322
Look up table with window size of 42 days with SW_IN VPD Tair
35
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................468
Look up table with window size of 14 days with SW_IN VPD Tair
........................495
Look up table with window size of 7 days with SW_IN
...................84
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................560
Look up table with window size of 28 days with SW_IN VPD Tair
............530
Look up table with window size of 35 days with SW_IN VPD Tair
.......413
Look up table with window size of 42 days with SW_IN VPD Tair
...204
Look up table with window size of 49 days with SW_IN VPD Tair
.27
Look up table with window size of 56 days with SW_IN VPD Tair
11
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
73
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
4
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.119
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.145
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.161
Look up table with window size of 14 days with SW_IN VPD Tair
21
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..256
Look up table with window size of 14 days with SW_IN VPD Tair
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...306
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...378
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....388
Look up table with window size of 14 days with SW_IN VPD Tair
65
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....454
Look up table with window size of 14 days with SW_IN VPD Tair
.108
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......541
Look up table with window size of 14 days with SW_IN VPD Tair
.135
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........567
Look up table with window size of 14 days with SW_IN VPD Tair
..241
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........319
Look up table with window size of 14 days with SW_IN VPD Tair
......451
Look up table with window size of 7 days with SW_IN
..58
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 21 days with SW_IN VPD Tair
.42
Look up table with window size of 28 days with SW_IN VPD Tair
.2
Look up table with window size of 35 days with SW_IN VPD Tair
.12
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
78
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........441
Look up table with window size of 14 days with SW_IN VPD Tair
.......375
Look up table with window size of 7 days with SW_IN
...127
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..4
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..176
Look up table with window size of 28 days with SW_IN VPD Tair
24
Look up table with window size of 35 days with SW_IN VPD Tair
20
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............424
Look up table with window size of 14 days with SW_IN VPD Tair
.........658
Look up table with window size of 7 days with SW_IN
...134
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.169
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................458
Look up table with window size of 14 days with SW_IN VPD Tair
............615
Look up table with window size of 7 days with SW_IN
......25
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....423
Look up table with window size of 28 days with SW_IN VPD Tair
.132
Look up table with window size of 35 days with SW_IN VPD Tair
21
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................517
Look up table with window size of 14 days with SW_IN VPD Tair
..............588
Look up table with window size of 7 days with SW_IN
.........17
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........654
Look up table with window size of 28 days with SW_IN VPD Tair
..127
Look up table with window size of 35 days with SW_IN VPD Tair
.16
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
46
Look up table with window size of 21 days with SW_IN
32
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................510
Look up table with window size of 14 days with SW_IN VPD Tair
..................488
Look up table with window size of 7 days with SW_IN
..............43
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............678
Look up table with window size of 28 days with SW_IN VPD Tair
......490
Look up table with window size of 35 days with SW_IN VPD Tair
.72
Look up table with window size of 42 days with SW_IN VPD Tair
.27
Look up table with window size of 49 days with SW_IN VPD Tair
31
Look up table with window size of 56 days with SW_IN VPD Tair
15
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
8
Look up table with window size of 14 days with SW_IN
12
Look up table with window size of 21 days with SW_IN
18
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
6
Look up table with window size of 49 days with SW_IN
3
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................460
Look up table with window size of 14 days with SW_IN VPD Tair
........................389
Look up table with window size of 7 days with SW_IN
....................33
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................484
Look up table with window size of 28 days with SW_IN VPD Tair
...............480
Look up table with window size of 35 days with SW_IN VPD Tair
..........448
Look up table with window size of 42 days with SW_IN VPD Tair
.....392
Look up table with window size of 49 days with SW_IN VPD Tair
.121
Look up table with window size of 56 days with SW_IN VPD Tair
44
Look up table with window size of 63 days with SW_IN VPD Tair
19
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
27
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.171
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Look up table with window size of 14 days with SW_IN VPD Tair
46
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...288
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
31
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...386
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....412
Look up table with window size of 14 days with SW_IN VPD Tair
51
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....389
Look up table with window size of 14 days with SW_IN VPD Tair
.157
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......457
Look up table with window size of 14 days with SW_IN VPD Tair
..218
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........539
Look up table with window size of 14 days with SW_IN VPD Tair
..260
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........507
Look up table with window size of 14 days with SW_IN VPD Tair
....431
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
22
Look up table with window size of 28 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........505
Look up table with window size of 14 days with SW_IN VPD Tair
......409
Look up table with window size of 7 days with SW_IN
..124
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.126
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............477
Look up table with window size of 14 days with SW_IN VPD Tair
.........634
Look up table with window size of 7 days with SW_IN
..10
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..1
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..211
Look up table with window size of 28 days with SW_IN VPD Tair
43
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
21
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................520
Look up table with window size of 14 days with SW_IN VPD Tair
...........548
Look up table with window size of 7 days with SW_IN
......21
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....486
Look up table with window size of 28 days with SW_IN VPD Tair
.83
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
10
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................495
Look up table with window size of 14 days with SW_IN VPD Tair
...............560
Look up table with window size of 7 days with SW_IN
.........3
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........741
Look up table with window size of 28 days with SW_IN VPD Tair
..204
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................366
Look up table with window size of 14 days with SW_IN VPD Tair
....................681
Look up table with window size of 7 days with SW_IN
.............65
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............675
Look up table with window size of 28 days with SW_IN VPD Tair
......383
Look up table with window size of 35 days with SW_IN VPD Tair
..157
Look up table with window size of 42 days with SW_IN VPD Tair
50
Look up table with window size of 49 days with SW_IN VPD Tair
19
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................384
Look up table with window size of 14 days with SW_IN VPD Tair
........................621
Look up table with window size of 7 days with SW_IN
..................68
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................7
Look up table with window size of 21 days with SW_IN VPD Tair
.................450
Look up table with window size of 28 days with SW_IN VPD Tair
.............442
Look up table with window size of 35 days with SW_IN VPD Tair
.........403
Look up table with window size of 42 days with SW_IN VPD Tair
.....309
Look up table with window size of 49 days with SW_IN VPD Tair
.94
Look up table with window size of 56 days with SW_IN VPD Tair
.60
Look up table with window size of 63 days with SW_IN VPD Tair
36
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'PA' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
78
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.61
Look up table with window size of 14 days with SW_IN VPD Tair
61
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.125
Look up table with window size of 14 days with SW_IN VPD Tair
25
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.168
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
13
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...366
Look up table with window size of 14 days with SW_IN VPD Tair
17
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....456
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....440
Look up table with window size of 14 days with SW_IN VPD Tair
.80
Look up table with window size of 7 days with SW_IN
21
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
13
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......290
Look up table with window size of 14 days with SW_IN VPD Tair
...293
Look up table with window size of 7 days with SW_IN
93
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........446
Look up table with window size of 14 days with SW_IN VPD Tair
...272
Look up table with window size of 7 days with SW_IN
74
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
14
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........496
Look up table with window size of 14 days with SW_IN VPD Tair
....358
Look up table with window size of 7 days with SW_IN
.74
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
45
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........565
Look up table with window size of 14 days with SW_IN VPD Tair
......437
Look up table with window size of 7 days with SW_IN
.0
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.157
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............636
Look up table with window size of 14 days with SW_IN VPD Tair
.......566
Look up table with window size of 7 days with SW_IN
.8
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.182
Look up table with window size of 28 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................464
Look up table with window size of 14 days with SW_IN VPD Tair
............497
Look up table with window size of 7 days with SW_IN
.......31
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......584
Look up table with window size of 28 days with SW_IN VPD Tair
.94
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................419
Look up table with window size of 14 days with SW_IN VPD Tair
...............621
Look up table with window size of 7 days with SW_IN
.........63
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........1
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........537
Look up table with window size of 28 days with SW_IN VPD Tair
...279
Look up table with window size of 35 days with SW_IN VPD Tair
54
Look up table with window size of 42 days with SW_IN VPD Tair
31
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................456
Look up table with window size of 14 days with SW_IN VPD Tair
...................603
Look up table with window size of 7 days with SW_IN
.............70
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............654
Look up table with window size of 28 days with SW_IN VPD Tair
......532
Look up table with window size of 35 days with SW_IN VPD Tair
41
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
36
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................490
Look up table with window size of 14 days with SW_IN VPD Tair
.......................621
Look up table with window size of 7 days with SW_IN
.................30
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................1
Look up table with window size of 21 days with SW_IN VPD Tair
.................612
Look up table with window size of 28 days with SW_IN VPD Tair
...........562
Look up table with window size of 35 days with SW_IN VPD Tair
.....356
Look up table with window size of 42 days with SW_IN VPD Tair
..55
Look up table with window size of 49 days with SW_IN VPD Tair
.18
Look up table with window size of 56 days with SW_IN VPD Tair
.31
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.2
Look up table with window size of 21 days with SW_IN
.57
Look up table with window size of 28 days with SW_IN
44
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...241
Look up table with window size of 14 days with SW_IN VPD Tair
40
Look up table with window size of 7 days with SW_IN
39
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...378
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....348
Look up table with window size of 14 days with SW_IN VPD Tair
.105
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....442
Look up table with window size of 14 days with SW_IN VPD Tair
.117
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......505
Look up table with window size of 14 days with SW_IN VPD Tair
.145
Look up table with window size of 7 days with SW_IN
26
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........462
Look up table with window size of 14 days with SW_IN VPD Tair
...250
Look up table with window size of 7 days with SW_IN
71
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
28
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........612
Look up table with window size of 14 days with SW_IN VPD Tair
...348
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
13
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........389
Look up table with window size of 14 days with SW_IN VPD Tair
.......441
Look up table with window size of 7 days with SW_IN
...84
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..203
Look up table with window size of 28 days with SW_IN VPD Tair
25
Look up table with window size of 35 days with SW_IN VPD Tair
16
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............444
Look up table with window size of 14 days with SW_IN VPD Tair
.........629
Look up table with window size of 7 days with SW_IN
...136
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.4
Mean diurnal course with window size of 2 days: .
.4
Look up table with window size of 21 days with SW_IN VPD Tair
.157
Look up table with window size of 28 days with SW_IN VPD Tair
8
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
11
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................469
Look up table with window size of 14 days with SW_IN VPD Tair
............576
Look up table with window size of 7 days with SW_IN
......13
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......1
Look up table with window size of 21 days with SW_IN VPD Tair
......493
Look up table with window size of 28 days with SW_IN VPD Tair
.115
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................598
Look up table with window size of 14 days with SW_IN VPD Tair
..............646
Look up table with window size of 7 days with SW_IN
.......2
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......599
Look up table with window size of 28 days with SW_IN VPD Tair
.132
Look up table with window size of 35 days with SW_IN VPD Tair
20
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................527
Look up table with window size of 14 days with SW_IN VPD Tair
..................589
Look up table with window size of 7 days with SW_IN
............7
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............499
Look up table with window size of 28 days with SW_IN VPD Tair
.......634
Look up table with window size of 35 days with SW_IN VPD Tair
.99
Look up table with window size of 42 days with SW_IN VPD Tair
28
Look up table with window size of 49 days with SW_IN VPD Tair
13
Look up table with window size of 56 days with SW_IN VPD Tair
6
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................524
Look up table with window size of 14 days with SW_IN VPD Tair
.......................614
Look up table with window size of 7 days with SW_IN
.................31
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................646
Look up table with window size of 28 days with SW_IN VPD Tair
..........685
Look up table with window size of 35 days with SW_IN VPD Tair
...261
Look up table with window size of 42 days with SW_IN VPD Tair
.41
Look up table with window size of 49 days with SW_IN VPD Tair
36
Look up table with window size of 56 days with SW_IN VPD Tair
24
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
5
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
11
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.92
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..217
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...298
Look up table with window size of 14 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...353
Look up table with window size of 14 days with SW_IN VPD Tair
28
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....391
Look up table with window size of 14 days with SW_IN VPD Tair
62
Look up table with window size of 7 days with SW_IN
13
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....349
Look up table with window size of 14 days with SW_IN VPD Tair
..212
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......532
Look up table with window size of 14 days with SW_IN VPD Tair
.125
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........427
Look up table with window size of 14 days with SW_IN VPD Tair
...329
Look up table with window size of 7 days with SW_IN
54
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........434
Look up table with window size of 14 days with SW_IN VPD Tair
.....467
Look up table with window size of 7 days with SW_IN
56
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
16
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........466
Look up table with window size of 14 days with SW_IN VPD Tair
.......540
Look up table with window size of 7 days with SW_IN
.4
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 21 days with SW_IN VPD Tair
.126
Look up table with window size of 28 days with SW_IN VPD Tair
28
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............614
Look up table with window size of 14 days with SW_IN VPD Tair
.......677
Look up table with window size of 7 days with SW_IN
.0
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.95
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................599
Look up table with window size of 14 days with SW_IN VPD Tair
..........629
Look up table with window size of 7 days with SW_IN
....1
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....319
Look up table with window size of 28 days with SW_IN VPD Tair
.98
Look up table with window size of 35 days with SW_IN VPD Tair
11
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................488
Look up table with window size of 14 days with SW_IN VPD Tair
...............569
Look up table with window size of 7 days with SW_IN
.........3
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........739
Look up table with window size of 28 days with SW_IN VPD Tair
..204
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................555
Look up table with window size of 14 days with SW_IN VPD Tair
..................521
Look up table with window size of 7 days with SW_IN
.............12
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............542
Look up table with window size of 28 days with SW_IN VPD Tair
.......586
Look up table with window size of 35 days with SW_IN VPD Tair
.166
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Mean diurnal course with window size of 14 days: .
3
Mean diurnal course with window size of 21 days: .
4
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................447
Look up table with window size of 14 days with SW_IN VPD Tair
........................556
Look up table with window size of 7 days with SW_IN
..................63
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................1
Look up table with window size of 21 days with SW_IN VPD Tair
..................454
Look up table with window size of 28 days with SW_IN VPD Tair
.............404
Look up table with window size of 35 days with SW_IN VPD Tair
.........350
Look up table with window size of 42 days with SW_IN VPD Tair
......341
Look up table with window size of 49 days with SW_IN VPD Tair
..111
Look up table with window size of 56 days with SW_IN VPD Tair
.59
Look up table with window size of 63 days with SW_IN VPD Tair
22
Look up table with window size of 70 days with SW_IN VPD Tair
15
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
27
Look up table with window size of 35 days with SW_IN
7
Look up table with window size of 42 days with SW_IN
11
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
3
Finished gap filling of 'PA' in 11 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
50
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.97
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..228
Look up table with window size of 14 days with SW_IN VPD Tair
22
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...294
Look up table with window size of 14 days with SW_IN VPD Tair
26
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...356
Look up table with window size of 14 days with SW_IN VPD Tair
29
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....348
Look up table with window size of 14 days with SW_IN VPD Tair
.97
Look up table with window size of 7 days with SW_IN
22
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....523
Look up table with window size of 14 days with SW_IN VPD Tair
38
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......416
Look up table with window size of 14 days with SW_IN VPD Tair
..211
Look up table with window size of 7 days with SW_IN
28
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
9
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........337
Look up table with window size of 14 days with SW_IN VPD Tair
....461
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........397
Look up table with window size of 14 days with SW_IN VPD Tair
.....396
Look up table with window size of 7 days with SW_IN
.122
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
52
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........299
Look up table with window size of 14 days with SW_IN VPD Tair
........345
Look up table with window size of 7 days with SW_IN
.....269
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..5
Look up table with window size of 21 days with SW_IN VPD Tair
..163
Look up table with window size of 28 days with SW_IN VPD Tair
48
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
10
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
6
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............447
Look up table with window size of 14 days with SW_IN VPD Tair
.........478
Look up table with window size of 7 days with SW_IN
....121
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...213
Look up table with window size of 28 days with SW_IN VPD Tair
.108
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
12
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
6
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................510
Look up table with window size of 14 days with SW_IN VPD Tair
...........497
Look up table with window size of 7 days with SW_IN
......3
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......433
Look up table with window size of 28 days with SW_IN VPD Tair
..140
Look up table with window size of 35 days with SW_IN VPD Tair
36
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
18
Look up table with window size of 21 days with SW_IN
22
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................380
Look up table with window size of 14 days with SW_IN VPD Tair
................546
Look up table with window size of 7 days with SW_IN
..........172
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........582
Look up table with window size of 28 days with SW_IN VPD Tair
...182
Look up table with window size of 35 days with SW_IN VPD Tair
.132
Look up table with window size of 42 days with SW_IN VPD Tair
14
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................369
Look up table with window size of 14 days with SW_IN VPD Tair
....................485
Look up table with window size of 7 days with SW_IN
...............49
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............1
Mean diurnal course with window size of 2 days: .
...............0
Look up table with window size of 21 days with SW_IN VPD Tair
...............606
Look up table with window size of 28 days with SW_IN VPD Tair
........539
Look up table with window size of 35 days with SW_IN VPD Tair
...288
Look up table with window size of 42 days with SW_IN VPD Tair
32
Look up table with window size of 49 days with SW_IN VPD Tair
32
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................534
Look up table with window size of 14 days with SW_IN VPD Tair
.......................655
Look up table with window size of 7 days with SW_IN
................6
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................5
Mean diurnal course with window size of 2 days: .
................8
Look up table with window size of 21 days with SW_IN VPD Tair
................532
Look up table with window size of 28 days with SW_IN VPD Tair
...........310
Look up table with window size of 35 days with SW_IN VPD Tair
........611
Look up table with window size of 42 days with SW_IN VPD Tair
..167
Look up table with window size of 49 days with SW_IN VPD Tair
28
Look up table with window size of 56 days with SW_IN VPD Tair
6
Look up table with window size of 63 days with SW_IN VPD Tair
5
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
10
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
39
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
79
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.98
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..198
Look up table with window size of 14 days with SW_IN VPD Tair
20
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..253
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...295
Look up table with window size of 14 days with SW_IN VPD Tair
27
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...326
Look up table with window size of 14 days with SW_IN VPD Tair
62
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....405
Look up table with window size of 14 days with SW_IN VPD Tair
55
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....454
Look up table with window size of 14 days with SW_IN VPD Tair
.78
Look up table with window size of 7 days with SW_IN
25
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......648
Look up table with window size of 14 days with SW_IN VPD Tair
28
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........440
Look up table with window size of 14 days with SW_IN VPD Tair
...330
Look up table with window size of 7 days with SW_IN
30
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
10
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........580
Look up table with window size of 14 days with SW_IN VPD Tair
...373
Look up table with window size of 7 days with SW_IN
19
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........493
Look up table with window size of 14 days with SW_IN VPD Tair
......664
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............520
Look up table with window size of 14 days with SW_IN VPD Tair
........610
Look up table with window size of 7 days with SW_IN
..24
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..1
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..226
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................434
Look up table with window size of 14 days with SW_IN VPD Tair
............487
Look up table with window size of 7 days with SW_IN
.......102
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......1
Look up table with window size of 21 days with SW_IN VPD Tair
......482
Look up table with window size of 28 days with SW_IN VPD Tair
.144
Look up table with window size of 35 days with SW_IN VPD Tair
19
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................536
Look up table with window size of 14 days with SW_IN VPD Tair
..............509
Look up table with window size of 7 days with SW_IN
.........36
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........1
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........656
Look up table with window size of 28 days with SW_IN VPD Tair
..98
Look up table with window size of 35 days with SW_IN VPD Tair
.126
Look up table with window size of 42 days with SW_IN VPD Tair
23
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................440
Look up table with window size of 14 days with SW_IN VPD Tair
...................576
Look up table with window size of 7 days with SW_IN
.............43
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............679
Look up table with window size of 28 days with SW_IN VPD Tair
......420
Look up table with window size of 35 days with SW_IN VPD Tair
..122
Look up table with window size of 42 days with SW_IN VPD Tair
.61
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
59
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................440
Look up table with window size of 14 days with SW_IN VPD Tair
........................661
Look up table with window size of 7 days with SW_IN
.................25
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................1
Look up table with window size of 21 days with SW_IN VPD Tair
.................550
Look up table with window size of 28 days with SW_IN VPD Tair
............727
Look up table with window size of 35 days with SW_IN VPD Tair
....353
Look up table with window size of 42 days with SW_IN VPD Tair
.34
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
13
Look up table with window size of 63 days with SW_IN VPD Tair
17
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
25
Look up table with window size of 21 days with SW_IN
17
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
3
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Look up table with window size of 70 days with SW_IN
1
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
16
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.98
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..203
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..249
Look up table with window size of 14 days with SW_IN VPD Tair
18
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...299
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
13
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...378
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....238
Look up table with window size of 14 days with SW_IN VPD Tair
..223
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....454
Look up table with window size of 14 days with SW_IN VPD Tair
.84
Look up table with window size of 7 days with SW_IN
21
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......586
Look up table with window size of 14 days with SW_IN VPD Tair
88
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........481
Look up table with window size of 14 days with SW_IN VPD Tair
...261
Look up table with window size of 7 days with SW_IN
58
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........542
Look up table with window size of 14 days with SW_IN VPD Tair
....386
Look up table with window size of 7 days with SW_IN
36
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........205
Look up table with window size of 14 days with SW_IN VPD Tair
.........487
Look up table with window size of 7 days with SW_IN
....234
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..119
Look up table with window size of 28 days with SW_IN VPD Tair
.67
Look up table with window size of 35 days with SW_IN VPD Tair
28
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
9
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............493
Look up table with window size of 14 days with SW_IN VPD Tair
.........421
Look up table with window size of 7 days with SW_IN
....119
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...342
Look up table with window size of 28 days with SW_IN VPD Tair
10
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
9
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................543
Look up table with window size of 14 days with SW_IN VPD Tair
...........517
Look up table with window size of 7 days with SW_IN
......82
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....216
Look up table with window size of 28 days with SW_IN VPD Tair
...132
Look up table with window size of 35 days with SW_IN VPD Tair
.162
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
10
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................424
Look up table with window size of 14 days with SW_IN VPD Tair
...............551
Look up table with window size of 7 days with SW_IN
..........61
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........1
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........689
Look up table with window size of 28 days with SW_IN VPD Tair
..241
Look up table with window size of 35 days with SW_IN VPD Tair
33
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................411
Look up table with window size of 14 days with SW_IN VPD Tair
...................660
Look up table with window size of 7 days with SW_IN
.............31
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............525
Look up table with window size of 28 days with SW_IN VPD Tair
.......326
Look up table with window size of 35 days with SW_IN VPD Tair
....151
Look up table with window size of 42 days with SW_IN VPD Tair
...184
Look up table with window size of 49 days with SW_IN VPD Tair
.40
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
10
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
18
Look up table with window size of 21 days with SW_IN
10
Look up table with window size of 28 days with SW_IN
24
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
8
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................449
Look up table with window size of 14 days with SW_IN VPD Tair
........................564
Look up table with window size of 7 days with SW_IN
..................85
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................387
Look up table with window size of 28 days with SW_IN VPD Tair
.............506
Look up table with window size of 35 days with SW_IN VPD Tair
........272
Look up table with window size of 42 days with SW_IN VPD Tair
......254
Look up table with window size of 49 days with SW_IN VPD Tair
...211
Look up table with window size of 56 days with SW_IN VPD Tair
.111
Look up table with window size of 63 days with SW_IN VPD Tair
26
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
5
Finished gap filling of 'PA' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
63
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.174
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..262
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...314
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...304
Look up table with window size of 14 days with SW_IN VPD Tair
69
Look up table with window size of 7 days with SW_IN
15
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....370
Look up table with window size of 14 days with SW_IN VPD Tair
42
Look up table with window size of 7 days with SW_IN
55
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....453
Look up table with window size of 14 days with SW_IN VPD Tair
.104
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......459
Look up table with window size of 14 days with SW_IN VPD Tair
..213
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........527
Look up table with window size of 14 days with SW_IN VPD Tair
..155
Look up table with window size of 7 days with SW_IN
.33
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
74
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........549
Look up table with window size of 14 days with SW_IN VPD Tair
....392
Look up table with window size of 7 days with SW_IN
28
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........401
Look up table with window size of 14 days with SW_IN VPD Tair
.......560
Look up table with window size of 7 days with SW_IN
..180
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
26
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............397
Look up table with window size of 14 days with SW_IN VPD Tair
..........211
Look up table with window size of 7 days with SW_IN
.......120
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......245
Look up table with window size of 28 days with SW_IN VPD Tair
....124
Look up table with window size of 35 days with SW_IN VPD Tair
...139
Look up table with window size of 42 days with SW_IN VPD Tair
.57
Look up table with window size of 49 days with SW_IN VPD Tair
.22
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
77
Look up table with window size of 21 days with SW_IN
7
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................564
Look up table with window size of 14 days with SW_IN VPD Tair
...........354
Look up table with window size of 7 days with SW_IN
.......55
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......1
Mean diurnal course with window size of 2 days: .
.......1
Look up table with window size of 21 days with SW_IN VPD Tair
.......375
Look up table with window size of 28 days with SW_IN VPD Tair
...161
Look up table with window size of 35 days with SW_IN VPD Tair
.123
Look up table with window size of 42 days with SW_IN VPD Tair
26
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
15
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................527
Look up table with window size of 14 days with SW_IN VPD Tair
..............412
Look up table with window size of 7 days with SW_IN
..........20
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........632
Look up table with window size of 28 days with SW_IN VPD Tair
....187
Look up table with window size of 35 days with SW_IN VPD Tair
..175
Look up table with window size of 42 days with SW_IN VPD Tair
35
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................518
Look up table with window size of 14 days with SW_IN VPD Tair
..................593
Look up table with window size of 7 days with SW_IN
............14
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............708
Look up table with window size of 28 days with SW_IN VPD Tair
.....474
Look up table with window size of 35 days with SW_IN VPD Tair
40
Look up table with window size of 42 days with SW_IN VPD Tair
44
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................338
Look up table with window size of 14 days with SW_IN VPD Tair
.........................603
Look up table with window size of 7 days with SW_IN
...................150
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................590
Look up table with window size of 28 days with SW_IN VPD Tair
...........664
Look up table with window size of 35 days with SW_IN VPD Tair
.....338
Look up table with window size of 42 days with SW_IN VPD Tair
.74
Look up table with window size of 49 days with SW_IN VPD Tair
.43
Look up table with window size of 56 days with SW_IN VPD Tair
55
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
12
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
50
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.148
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.170
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..251
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...277
Look up table with window size of 14 days with SW_IN VPD Tair
24
Look up table with window size of 7 days with SW_IN
21
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...376
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....451
Look up table with window size of 14 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....345
Look up table with window size of 14 days with SW_IN VPD Tair
..191
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
11
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......517
Look up table with window size of 14 days with SW_IN VPD Tair
.118
Look up table with window size of 7 days with SW_IN
36
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........570
Look up table with window size of 14 days with SW_IN VPD Tair
..236
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........502
Look up table with window size of 14 days with SW_IN VPD Tair
....396
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
62
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........493
Look up table with window size of 14 days with SW_IN VPD Tair
......535
Look up table with window size of 7 days with SW_IN
.89
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
39
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............403
Look up table with window size of 14 days with SW_IN VPD Tair
.........562
Look up table with window size of 7 days with SW_IN
....4
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....401
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
9
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................511
Look up table with window size of 14 days with SW_IN VPD Tair
...........558
Look up table with window size of 7 days with SW_IN
......47
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....352
Look up table with window size of 28 days with SW_IN VPD Tair
..127
Look up table with window size of 35 days with SW_IN VPD Tair
65
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................463
Look up table with window size of 14 days with SW_IN VPD Tair
...............432
Look up table with window size of 7 days with SW_IN
...........20
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........744
Look up table with window size of 28 days with SW_IN VPD Tair
...312
Look up table with window size of 35 days with SW_IN VPD Tair
25
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................459
Look up table with window size of 14 days with SW_IN VPD Tair
...................465
Look up table with window size of 7 days with SW_IN
..............49
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............719
Look up table with window size of 28 days with SW_IN VPD Tair
.......499
Look up table with window size of 35 days with SW_IN VPD Tair
..21
Look up table with window size of 42 days with SW_IN VPD Tair
.96
Look up table with window size of 49 days with SW_IN VPD Tair
33
Look up table with window size of 56 days with SW_IN VPD Tair
13
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
27
Look up table with window size of 21 days with SW_IN
15
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Mean diurnal course with window size of 21 days: .
3
Mean diurnal course with window size of 28 days: .
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................572
Look up table with window size of 14 days with SW_IN VPD Tair
.......................650
Look up table with window size of 7 days with SW_IN
................4
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................530
Look up table with window size of 28 days with SW_IN VPD Tair
...........337
Look up table with window size of 35 days with SW_IN VPD Tair
.......339
Look up table with window size of 42 days with SW_IN VPD Tair
....292
Look up table with window size of 49 days with SW_IN VPD Tair
.49
Look up table with window size of 56 days with SW_IN VPD Tair
.26
Look up table with window size of 63 days with SW_IN VPD Tair
13
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
9
Look up table with window size of 28 days with SW_IN
28
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
16
Look up table with window size of 49 days with SW_IN
7
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..259
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...295
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
19
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...362
Look up table with window size of 14 days with SW_IN VPD Tair
17
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....443
Look up table with window size of 14 days with SW_IN VPD Tair
25
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....489
Look up table with window size of 14 days with SW_IN VPD Tair
68
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......540
Look up table with window size of 14 days with SW_IN VPD Tair
.135
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........547
Look up table with window size of 14 days with SW_IN VPD Tair
..238
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
25
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........516
Look up table with window size of 14 days with SW_IN VPD Tair
....326
Look up table with window size of 7 days with SW_IN
.61
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
59
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........450
Look up table with window size of 14 days with SW_IN VPD Tair
.......530
Look up table with window size of 7 days with SW_IN
.59
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.120
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............527
Look up table with window size of 14 days with SW_IN VPD Tair
........631
Look up table with window size of 7 days with SW_IN
..67
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.156
Look up table with window size of 28 days with SW_IN VPD Tair
12
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................294
Look up table with window size of 14 days with SW_IN VPD Tair
.............614
Look up table with window size of 7 days with SW_IN
.......113
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......317
Look up table with window size of 28 days with SW_IN VPD Tair
...333
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................353
Look up table with window size of 14 days with SW_IN VPD Tair
................551
Look up table with window size of 7 days with SW_IN
...........28
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........821
Look up table with window size of 28 days with SW_IN VPD Tair
..180
Look up table with window size of 35 days with SW_IN VPD Tair
33
Look up table with window size of 42 days with SW_IN VPD Tair
42
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................554
Look up table with window size of 14 days with SW_IN VPD Tair
..................474
Look up table with window size of 7 days with SW_IN
.............9
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............450
Look up table with window size of 28 days with SW_IN VPD Tair
.........510
Look up table with window size of 35 days with SW_IN VPD Tair
....182
Look up table with window size of 42 days with SW_IN VPD Tair
..157
Look up table with window size of 49 days with SW_IN VPD Tair
34
Look up table with window size of 56 days with SW_IN VPD Tair
23
Look up table with window size of 63 days with SW_IN VPD Tair
9
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................409
Look up table with window size of 14 days with SW_IN VPD Tair
........................603
Look up table with window size of 7 days with SW_IN
..................48
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................715
Look up table with window size of 28 days with SW_IN VPD Tair
...........680
Look up table with window size of 35 days with SW_IN VPD Tair
....341
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
16
Look up table with window size of 56 days with SW_IN VPD Tair
21
Look up table with window size of 63 days with SW_IN VPD Tair
43
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
79
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.96
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.106
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
16
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.156
Look up table with window size of 14 days with SW_IN VPD Tair
25
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...283
Look up table with window size of 14 days with SW_IN VPD Tair
38
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...352
Look up table with window size of 14 days with SW_IN VPD Tair
23
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....443
Look up table with window size of 14 days with SW_IN VPD Tair
16
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....445
Look up table with window size of 14 days with SW_IN VPD Tair
.111
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......435
Look up table with window size of 14 days with SW_IN VPD Tair
..231
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........398
Look up table with window size of 14 days with SW_IN VPD Tair
....291
Look up table with window size of 7 days with SW_IN
.94
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
27
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........394
Look up table with window size of 14 days with SW_IN VPD Tair
.....408
Look up table with window size of 7 days with SW_IN
.108
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
35
Look up table with window size of 28 days with SW_IN VPD Tair
13
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........444
Look up table with window size of 14 days with SW_IN VPD Tair
.......529
Look up table with window size of 7 days with SW_IN
.31
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.136
Look up table with window size of 28 days with SW_IN VPD Tair
27
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............546
Look up table with window size of 14 days with SW_IN VPD Tair
........637
Look up table with window size of 7 days with SW_IN
..1
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..190
Look up table with window size of 28 days with SW_IN VPD Tair
25
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................426
Look up table with window size of 14 days with SW_IN VPD Tair
............488
Look up table with window size of 7 days with SW_IN
.......33
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......542
Look up table with window size of 28 days with SW_IN VPD Tair
.105
Look up table with window size of 35 days with SW_IN VPD Tair
32
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
19
Look up table with window size of 21 days with SW_IN
22
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................536
Look up table with window size of 14 days with SW_IN VPD Tair
..............611
Look up table with window size of 7 days with SW_IN
........91
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......557
Look up table with window size of 28 days with SW_IN VPD Tair
..123
Look up table with window size of 35 days with SW_IN VPD Tair
11
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
18
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
48
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................606
Look up table with window size of 14 days with SW_IN VPD Tair
.................643
Look up table with window size of 7 days with SW_IN
...........1
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........533
Look up table with window size of 28 days with SW_IN VPD Tair
......440
Look up table with window size of 35 days with SW_IN VPD Tair
.53
Look up table with window size of 42 days with SW_IN VPD Tair
.5
Look up table with window size of 49 days with SW_IN VPD Tair
.3
Look up table with window size of 56 days with SW_IN VPD Tair
.0
Look up table with window size of 63 days with SW_IN VPD Tair
.2
Look up table with window size of 70 days with SW_IN VPD Tair
.1
Look up table with window size of 14 days with SW_IN
.38
Look up table with window size of 21 days with SW_IN
21
Look up table with window size of 28 days with SW_IN
58
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................587
Look up table with window size of 14 days with SW_IN VPD Tair
......................599
Look up table with window size of 7 days with SW_IN
................66
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................674
Look up table with window size of 28 days with SW_IN VPD Tair
.........532
Look up table with window size of 35 days with SW_IN VPD Tair
....316
Look up table with window size of 42 days with SW_IN VPD Tair
.93
Look up table with window size of 49 days with SW_IN VPD Tair
8
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.111
Look up table with window size of 14 days with SW_IN VPD Tair
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.166
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..196
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
19
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..248
Look up table with window size of 14 days with SW_IN VPD Tair
19
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...375
Look up table with window size of 14 days with SW_IN VPD Tair
13
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....420
Look up table with window size of 14 days with SW_IN VPD Tair
40
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....470
Look up table with window size of 14 days with SW_IN VPD Tair
89
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......417
Look up table with window size of 14 days with SW_IN VPD Tair
..245
Look up table with window size of 7 days with SW_IN
14
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........620
Look up table with window size of 14 days with SW_IN VPD Tair
.191
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........470
Look up table with window size of 14 days with SW_IN VPD Tair
.....365
Look up table with window size of 7 days with SW_IN
.96
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
19
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........408
Look up table with window size of 14 days with SW_IN VPD Tair
.......605
Look up table with window size of 7 days with SW_IN
.27
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.110
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............502
Look up table with window size of 14 days with SW_IN VPD Tair
........430
Look up table with window size of 7 days with SW_IN
....122
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...329
Look up table with window size of 28 days with SW_IN VPD Tair
14
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................464
Look up table with window size of 14 days with SW_IN VPD Tair
............638
Look up table with window size of 7 days with SW_IN
.....31
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....516
Look up table with window size of 28 days with SW_IN VPD Tair
18
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................469
Look up table with window size of 14 days with SW_IN VPD Tair
...............613
Look up table with window size of 7 days with SW_IN
.........13
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........1
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........579
Look up table with window size of 28 days with SW_IN VPD Tair
...225
Look up table with window size of 35 days with SW_IN VPD Tair
.42
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
15
Look up table with window size of 21 days with SW_IN
38
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................367
Look up table with window size of 14 days with SW_IN VPD Tair
....................582
Look up table with window size of 7 days with SW_IN
..............1
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............744
Look up table with window size of 28 days with SW_IN VPD Tair
.......474
Look up table with window size of 35 days with SW_IN VPD Tair
..108
Look up table with window size of 42 days with SW_IN VPD Tair
.98
Look up table with window size of 49 days with SW_IN VPD Tair
12
Look up table with window size of 56 days with SW_IN VPD Tair
8
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................417
Look up table with window size of 14 days with SW_IN VPD Tair
........................369
Look up table with window size of 7 days with SW_IN
....................181
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................564
Look up table with window size of 28 days with SW_IN VPD Tair
.............426
Look up table with window size of 35 days with SW_IN VPD Tair
.........461
Look up table with window size of 42 days with SW_IN VPD Tair
....374
Look up table with window size of 49 days with SW_IN VPD Tair
16
Look up table with window size of 56 days with SW_IN VPD Tair
20
Look up table with window size of 63 days with SW_IN VPD Tair
13
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
20
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
8
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.145
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.171
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..208
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...253
Look up table with window size of 14 days with SW_IN VPD Tair
58
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...371
Look up table with window size of 14 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....368
Look up table with window size of 14 days with SW_IN VPD Tair
.93
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....496
Look up table with window size of 14 days with SW_IN VPD Tair
59
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......528
Look up table with window size of 14 days with SW_IN VPD Tair
.147
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........488
Look up table with window size of 14 days with SW_IN VPD Tair
...288
Look up table with window size of 7 days with SW_IN
23
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........357
Look up table with window size of 14 days with SW_IN VPD Tair
......360
Look up table with window size of 7 days with SW_IN
..186
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
45
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........543
Look up table with window size of 14 days with SW_IN VPD Tair
......547
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
58
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............410
Look up table with window size of 14 days with SW_IN VPD Tair
.........764
Look up table with window size of 7 days with SW_IN
..4
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..219
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................420
Look up table with window size of 14 days with SW_IN VPD Tair
............553
Look up table with window size of 7 days with SW_IN
.......94
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......480
Look up table with window size of 28 days with SW_IN VPD Tair
.125
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................558
Look up table with window size of 14 days with SW_IN VPD Tair
..............634
Look up table with window size of 7 days with SW_IN
........13
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........351
Look up table with window size of 28 days with SW_IN VPD Tair
....395
Look up table with window size of 35 days with SW_IN VPD Tair
28
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
14
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
6
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................510
Look up table with window size of 14 days with SW_IN VPD Tair
..................627
Look up table with window size of 7 days with SW_IN
............12
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............625
Look up table with window size of 28 days with SW_IN VPD Tair
......495
Look up table with window size of 35 days with SW_IN VPD Tair
.87
Look up table with window size of 42 days with SW_IN VPD Tair
42
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................435
Look up table with window size of 14 days with SW_IN VPD Tair
........................531
Look up table with window size of 7 days with SW_IN
...................32
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................799
Look up table with window size of 28 days with SW_IN VPD Tair
..........745
Look up table with window size of 35 days with SW_IN VPD Tair
...267
Look up table with window size of 42 days with SW_IN VPD Tair
51
Look up table with window size of 49 days with SW_IN VPD Tair
15
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
16
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
27
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
49
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.93
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..262
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...350
Look up table with window size of 14 days with SW_IN VPD Tair
38
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....419
Look up table with window size of 14 days with SW_IN VPD Tair
43
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....499
Look up table with window size of 14 days with SW_IN VPD Tair
62
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......325
Look up table with window size of 14 days with SW_IN VPD Tair
...320
Look up table with window size of 7 days with SW_IN
24
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........445
Look up table with window size of 14 days with SW_IN VPD Tair
...334
Look up table with window size of 7 days with SW_IN
19
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
13
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........367
Look up table with window size of 14 days with SW_IN VPD Tair
......451
Look up table with window size of 7 days with SW_IN
.115
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
21
Look up table with window size of 28 days with SW_IN VPD Tair
19
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........501
Look up table with window size of 14 days with SW_IN VPD Tair
......552
Look up table with window size of 7 days with SW_IN
.21
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
68
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
16
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............267
Look up table with window size of 14 days with SW_IN VPD Tair
...........577
Look up table with window size of 7 days with SW_IN
.....72
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....466
Look up table with window size of 28 days with SW_IN VPD Tair
10
Look up table with window size of 35 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................429
Look up table with window size of 14 days with SW_IN VPD Tair
............595
Look up table with window size of 7 days with SW_IN
......0
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......564
Look up table with window size of 28 days with SW_IN VPD Tair
50
Look up table with window size of 35 days with SW_IN VPD Tair
19
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
8
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................478
Look up table with window size of 14 days with SW_IN VPD Tair
...............536
Look up table with window size of 7 days with SW_IN
.........19
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........620
Look up table with window size of 28 days with SW_IN VPD Tair
...343
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................366
Look up table with window size of 14 days with SW_IN VPD Tair
....................262
Look up table with window size of 7 days with SW_IN
.................218
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............0
Mean diurnal course with window size of 2 days: .
...............0
Look up table with window size of 21 days with SW_IN VPD Tair
...............150
Look up table with window size of 28 days with SW_IN VPD Tair
..............371
Look up table with window size of 35 days with SW_IN VPD Tair
..........298
Look up table with window size of 42 days with SW_IN VPD Tair
.......343
Look up table with window size of 49 days with SW_IN VPD Tair
...103
Look up table with window size of 56 days with SW_IN VPD Tair
..8
Look up table with window size of 63 days with SW_IN VPD Tair
..26
Look up table with window size of 70 days with SW_IN VPD Tair
..4
Look up table with window size of 14 days with SW_IN
..82
Look up table with window size of 21 days with SW_IN
.102
Look up table with window size of 28 days with SW_IN
65
Look up table with window size of 35 days with SW_IN
7
Finished gap filling of 'PA' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................500
Look up table with window size of 14 days with SW_IN VPD Tair
.......................646
Look up table with window size of 7 days with SW_IN
.................50
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................648
Look up table with window size of 28 days with SW_IN VPD Tair
..........620
Look up table with window size of 35 days with SW_IN VPD Tair
....337
Look up table with window size of 42 days with SW_IN VPD Tair
75
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
15
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
47
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
78
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.113
Look up table with window size of 14 days with SW_IN VPD Tair
17
Look up table with window size of 7 days with SW_IN
20
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.163
Look up table with window size of 14 days with SW_IN VPD Tair
19
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..210
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...291
Look up table with window size of 14 days with SW_IN VPD Tair
25
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...379
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....451
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....304
Look up table with window size of 14 days with SW_IN VPD Tair
..217
Look up table with window size of 7 days with SW_IN
37
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......442
Look up table with window size of 14 days with SW_IN VPD Tair
..201
Look up table with window size of 7 days with SW_IN
33
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........469
Look up table with window size of 14 days with SW_IN VPD Tair
...315
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........623
Look up table with window size of 14 days with SW_IN VPD Tair
...294
Look up table with window size of 7 days with SW_IN
13
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
34
Look up table with window size of 35 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........410
Look up table with window size of 14 days with SW_IN VPD Tair
.......557
Look up table with window size of 7 days with SW_IN
..28
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.164
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............457
Look up table with window size of 14 days with SW_IN VPD Tair
.........700
Look up table with window size of 7 days with SW_IN
..56
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.149
Look up table with window size of 28 days with SW_IN VPD Tair
16
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
8
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................352
Look up table with window size of 14 days with SW_IN VPD Tair
.............599
Look up table with window size of 7 days with SW_IN
.......79
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......434
Look up table with window size of 28 days with SW_IN VPD Tair
..160
Look up table with window size of 35 days with SW_IN VPD Tair
21
Look up table with window size of 42 days with SW_IN VPD Tair
17
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
5
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................510
Look up table with window size of 14 days with SW_IN VPD Tair
..............386
Look up table with window size of 7 days with SW_IN
...........24
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........736
Look up table with window size of 28 days with SW_IN VPD Tair
...253
Look up table with window size of 35 days with SW_IN VPD Tair
80
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................513
Look up table with window size of 14 days with SW_IN VPD Tair
..................616
Look up table with window size of 7 days with SW_IN
............43
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............2
Look up table with window size of 21 days with SW_IN VPD Tair
............619
Look up table with window size of 28 days with SW_IN VPD Tair
......435
Look up table with window size of 35 days with SW_IN VPD Tair
.76
Look up table with window size of 42 days with SW_IN VPD Tair
.20
Look up table with window size of 49 days with SW_IN VPD Tair
11
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
7
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
58
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................562
Look up table with window size of 14 days with SW_IN VPD Tair
.......................630
Look up table with window size of 7 days with SW_IN
................0
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................599
Look up table with window size of 28 days with SW_IN VPD Tair
..........558
Look up table with window size of 35 days with SW_IN VPD Tair
.....346
Look up table with window size of 42 days with SW_IN VPD Tair
.113
Look up table with window size of 49 days with SW_IN VPD Tair
16
Look up table with window size of 56 days with SW_IN VPD Tair
28
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
12
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'PA' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
79
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.141
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..211
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...321
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...379
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....419
Look up table with window size of 14 days with SW_IN VPD Tair
37
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....448
Look up table with window size of 14 days with SW_IN VPD Tair
.114
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......445
Look up table with window size of 14 days with SW_IN VPD Tair
..192
Look up table with window size of 7 days with SW_IN
23
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........370
Look up table with window size of 14 days with SW_IN VPD Tair
....407
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
25
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........466
Look up table with window size of 14 days with SW_IN VPD Tair
.....306
Look up table with window size of 7 days with SW_IN
..58
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.60
Look up table with window size of 28 days with SW_IN VPD Tair
75
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........437
Look up table with window size of 14 days with SW_IN VPD Tair
.......564
Look up table with window size of 7 days with SW_IN
.81
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
51
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
18
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............361
Look up table with window size of 14 days with SW_IN VPD Tair
..........370
Look up table with window size of 7 days with SW_IN
......115
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....6
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....476
Look up table with window size of 28 days with SW_IN VPD Tair
56
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................305
Look up table with window size of 14 days with SW_IN VPD Tair
.............652
Look up table with window size of 7 days with SW_IN
.......175
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....317
Look up table with window size of 28 days with SW_IN VPD Tair
..221
Look up table with window size of 35 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................474
Look up table with window size of 14 days with SW_IN VPD Tair
...............556
Look up table with window size of 7 days with SW_IN
.........32
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........607
Look up table with window size of 28 days with SW_IN VPD Tair
...69
Look up table with window size of 35 days with SW_IN VPD Tair
..73
Look up table with window size of 42 days with SW_IN VPD Tair
.13
Look up table with window size of 49 days with SW_IN VPD Tair
.85
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
15
Look up table with window size of 21 days with SW_IN
77
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................549
Look up table with window size of 14 days with SW_IN VPD Tair
..................593
Look up table with window size of 7 days with SW_IN
............4
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............552
Look up table with window size of 28 days with SW_IN VPD Tair
.......518
Look up table with window size of 35 days with SW_IN VPD Tair
.96
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
6
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
9
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
9
Look up table with window size of 42 days with SW_IN
27
Look up table with window size of 49 days with SW_IN
15
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................397
Look up table with window size of 14 days with SW_IN VPD Tair
........................684
Look up table with window size of 7 days with SW_IN
.................25
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................3
Look up table with window size of 21 days with SW_IN VPD Tair
.................611
Look up table with window size of 28 days with SW_IN VPD Tair
...........432
Look up table with window size of 35 days with SW_IN VPD Tair
.......521
Look up table with window size of 42 days with SW_IN VPD Tair
..88
Look up table with window size of 49 days with SW_IN VPD Tair
.9
Look up table with window size of 56 days with SW_IN VPD Tair
.7
Look up table with window size of 63 days with SW_IN VPD Tair
.2
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.0
Look up table with window size of 21 days with SW_IN
.6
Look up table with window size of 28 days with SW_IN
43
Look up table with window size of 35 days with SW_IN
26
Look up table with window size of 42 days with SW_IN
25
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
35
Look up table with window size of 14 days with SW_IN VPD Tair
15
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
62
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.176
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..244
Look up table with window size of 14 days with SW_IN VPD Tair
20
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...277
Look up table with window size of 14 days with SW_IN VPD Tair
32
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...335
Look up table with window size of 14 days with SW_IN VPD Tair
53
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....394
Look up table with window size of 14 days with SW_IN VPD Tair
69
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....493
Look up table with window size of 14 days with SW_IN VPD Tair
69
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......472
Look up table with window size of 14 days with SW_IN VPD Tair
..188
Look up table with window size of 7 days with SW_IN
16
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........549
Look up table with window size of 14 days with SW_IN VPD Tair
..208
Look up table with window size of 7 days with SW_IN
47
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........346
Look up table with window size of 14 days with SW_IN VPD Tair
......514
Look up table with window size of 7 days with SW_IN
.55
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
57
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........309
Look up table with window size of 14 days with SW_IN VPD Tair
........649
Look up table with window size of 7 days with SW_IN
..18
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.167
Look up table with window size of 28 days with SW_IN VPD Tair
21
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............598
Look up table with window size of 14 days with SW_IN VPD Tair
........638
Look up table with window size of 7 days with SW_IN
.9
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.119
Look up table with window size of 28 days with SW_IN VPD Tair
20
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................264
Look up table with window size of 14 days with SW_IN VPD Tair
..............451
Look up table with window size of 7 days with SW_IN
.........95
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........643
Look up table with window size of 28 days with SW_IN VPD Tair
..200
Look up table with window size of 35 days with SW_IN VPD Tair
19
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................482
Look up table with window size of 14 days with SW_IN VPD Tair
...............570
Look up table with window size of 7 days with SW_IN
.........120
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........1
Look up table with window size of 21 days with SW_IN VPD Tair
........448
Look up table with window size of 28 days with SW_IN VPD Tair
...301
Look up table with window size of 35 days with SW_IN VPD Tair
78
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................538
Look up table with window size of 14 days with SW_IN VPD Tair
..................590
Look up table with window size of 7 days with SW_IN
............8
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............724
Look up table with window size of 28 days with SW_IN VPD Tair
.....487
Look up table with window size of 35 days with SW_IN VPD Tair
15
Look up table with window size of 42 days with SW_IN VPD Tair
42
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................508
Look up table with window size of 14 days with SW_IN VPD Tair
.......................529
Look up table with window size of 7 days with SW_IN
..................23
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................8
Mean diurnal course with window size of 2 days: .
..................8
Look up table with window size of 21 days with SW_IN VPD Tair
..................645
Look up table with window size of 28 days with SW_IN VPD Tair
...........507
Look up table with window size of 35 days with SW_IN VPD Tair
......336
Look up table with window size of 42 days with SW_IN VPD Tair
...128
Look up table with window size of 49 days with SW_IN VPD Tair
.51
Look up table with window size of 56 days with SW_IN VPD Tair
.40
Look up table with window size of 63 days with SW_IN VPD Tair
25
Look up table with window size of 70 days with SW_IN VPD Tair
8
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
16
Look up table with window size of 28 days with SW_IN
40
Look up table with window size of 35 days with SW_IN
5
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.118
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.149
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.167
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..201
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..224
Look up table with window size of 14 days with SW_IN VPD Tair
29
Look up table with window size of 7 days with SW_IN
14
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...302
Look up table with window size of 14 days with SW_IN VPD Tair
17
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...332
Look up table with window size of 14 days with SW_IN VPD Tair
53
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....333
Look up table with window size of 14 days with SW_IN VPD Tair
.125
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....467
Look up table with window size of 14 days with SW_IN VPD Tair
77
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......553
Look up table with window size of 14 days with SW_IN VPD Tair
.84
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
17
Look up table with window size of 49 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........563
Look up table with window size of 14 days with SW_IN VPD Tair
..206
Look up table with window size of 7 days with SW_IN
37
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........452
Look up table with window size of 14 days with SW_IN VPD Tair
.....434
Look up table with window size of 7 days with SW_IN
28
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
52
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........405
Look up table with window size of 14 days with SW_IN VPD Tair
.......538
Look up table with window size of 7 days with SW_IN
..126
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
89
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............510
Look up table with window size of 14 days with SW_IN VPD Tair
........536
Look up table with window size of 7 days with SW_IN
...66
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..2
Mean diurnal course with window size of 2 days: .
..2
Look up table with window size of 21 days with SW_IN VPD Tair
..254
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................362
Look up table with window size of 14 days with SW_IN VPD Tair
.............751
Look up table with window size of 7 days with SW_IN
.....151
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....4
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....360
Look up table with window size of 28 days with SW_IN VPD Tair
23
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
21
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................596
Look up table with window size of 14 days with SW_IN VPD Tair
..............444
Look up table with window size of 7 days with SW_IN
.........62
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........1
Look up table with window size of 21 days with SW_IN VPD Tair
.........410
Look up table with window size of 28 days with SW_IN VPD Tair
....428
Look up table with window size of 35 days with SW_IN VPD Tair
55
Look up table with window size of 42 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................446
Look up table with window size of 14 days with SW_IN VPD Tair
...................535
Look up table with window size of 7 days with SW_IN
..............69
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............473
Look up table with window size of 28 days with SW_IN VPD Tair
........452
Look up table with window size of 35 days with SW_IN VPD Tair
....343
Look up table with window size of 42 days with SW_IN VPD Tair
60
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
3
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................408
Look up table with window size of 14 days with SW_IN VPD Tair
........................646
Look up table with window size of 7 days with SW_IN
..................72
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................548
Look up table with window size of 28 days with SW_IN VPD Tair
............592
Look up table with window size of 35 days with SW_IN VPD Tair
......298
Look up table with window size of 42 days with SW_IN VPD Tair
...146
Look up table with window size of 49 days with SW_IN VPD Tair
.96
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
10
Look up table with window size of 28 days with SW_IN
26
Look up table with window size of 35 days with SW_IN
30
Finished gap filling of 'PA' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.142
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..247
Look up table with window size of 14 days with SW_IN VPD Tair
20
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...300
Look up table with window size of 14 days with SW_IN VPD Tair
19
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...367
Look up table with window size of 14 days with SW_IN VPD Tair
21
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....464
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....319
Look up table with window size of 14 days with SW_IN VPD Tair
..233
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......635
Look up table with window size of 14 days with SW_IN VPD Tair
38
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........412
Look up table with window size of 14 days with SW_IN VPD Tair
...372
Look up table with window size of 7 days with SW_IN
21
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........569
Look up table with window size of 14 days with SW_IN VPD Tair
....398
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........428
Look up table with window size of 14 days with SW_IN VPD Tair
.......390
Look up table with window size of 7 days with SW_IN
...9
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...9
Mean diurnal course with window size of 2 days: .
...2
Look up table with window size of 21 days with SW_IN VPD Tair
...296
Look up table with window size of 28 days with SW_IN VPD Tair
20
Look up table with window size of 35 days with SW_IN VPD Tair
13
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............490
Look up table with window size of 14 days with SW_IN VPD Tair
.........565
Look up table with window size of 7 days with SW_IN
...16
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...306
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
11
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................310
Look up table with window size of 14 days with SW_IN VPD Tair
.............564
Look up table with window size of 7 days with SW_IN
........225
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....376
Look up table with window size of 28 days with SW_IN VPD Tair
..21
Look up table with window size of 35 days with SW_IN VPD Tair
.54
Look up table with window size of 42 days with SW_IN VPD Tair
.65
Look up table with window size of 49 days with SW_IN VPD Tair
24
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
6
Look up table with window size of 14 days with SW_IN
26
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................340
Look up table with window size of 14 days with SW_IN VPD Tair
................479
Look up table with window size of 7 days with SW_IN
...........90
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........551
Look up table with window size of 28 days with SW_IN VPD Tair
.....311
Look up table with window size of 35 days with SW_IN VPD Tair
..122
Look up table with window size of 42 days with SW_IN VPD Tair
.23
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
9
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
68
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................557
Look up table with window size of 14 days with SW_IN VPD Tair
..................426
Look up table with window size of 7 days with SW_IN
..............19
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............435
Look up table with window size of 28 days with SW_IN VPD Tair
.........481
Look up table with window size of 35 days with SW_IN VPD Tair
....249
Look up table with window size of 42 days with SW_IN VPD Tair
..141
Look up table with window size of 49 days with SW_IN VPD Tair
26
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
10
Look up table with window size of 21 days with SW_IN
26
Look up table with window size of 28 days with SW_IN
29
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................458
Look up table with window size of 14 days with SW_IN VPD Tair
........................720
Look up table with window size of 7 days with SW_IN
.................6
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................537
Look up table with window size of 28 days with SW_IN VPD Tair
...........635
Look up table with window size of 35 days with SW_IN VPD Tair
.....366
Look up table with window size of 42 days with SW_IN VPD Tair
.49
Look up table with window size of 49 days with SW_IN VPD Tair
.27
Look up table with window size of 56 days with SW_IN VPD Tair
26
Look up table with window size of 63 days with SW_IN VPD Tair
10
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
22
Look up table with window size of 35 days with SW_IN
10
Look up table with window size of 42 days with SW_IN
8
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
25
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
74
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.112
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.145
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.180
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..205
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
15
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...319
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...223
Look up table with window size of 14 days with SW_IN VPD Tair
.53
Look up table with window size of 7 days with SW_IN
.112
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....406
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
49
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....543
Look up table with window size of 14 days with SW_IN VPD Tair
16
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......306
Look up table with window size of 14 days with SW_IN VPD Tair
...367
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........588
Look up table with window size of 14 days with SW_IN VPD Tair
..223
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........573
Look up table with window size of 14 days with SW_IN VPD Tair
....339
Look up table with window size of 7 days with SW_IN
21
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
40
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........555
Look up table with window size of 14 days with SW_IN VPD Tair
......456
Look up table with window size of 7 days with SW_IN
.9
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.127
Look up table with window size of 28 days with SW_IN VPD Tair
16
Look up table with window size of 35 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............456
Look up table with window size of 14 days with SW_IN VPD Tair
.........586
Look up table with window size of 7 days with SW_IN
...28
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...1
Look up table with window size of 21 days with SW_IN VPD Tair
...260
Look up table with window size of 28 days with SW_IN VPD Tair
41
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................322
Look up table with window size of 14 days with SW_IN VPD Tair
.............571
Look up table with window size of 7 days with SW_IN
.......144
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......486
Look up table with window size of 28 days with SW_IN VPD Tair
.150
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................386
Look up table with window size of 14 days with SW_IN VPD Tair
................686
Look up table with window size of 7 days with SW_IN
.........66
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........570
Look up table with window size of 28 days with SW_IN VPD Tair
...219
Look up table with window size of 35 days with SW_IN VPD Tair
39
Look up table with window size of 42 days with SW_IN VPD Tair
22
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
9
Look up table with window size of 28 days with SW_IN
9
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................556
Look up table with window size of 14 days with SW_IN VPD Tair
..................553
Look up table with window size of 7 days with SW_IN
............17
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............594
Look up table with window size of 28 days with SW_IN VPD Tair
......457
Look up table with window size of 35 days with SW_IN VPD Tair
..133
Look up table with window size of 42 days with SW_IN VPD Tair
33
Look up table with window size of 49 days with SW_IN VPD Tair
11
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
19
Look up table with window size of 35 days with SW_IN
26
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................470
Look up table with window size of 14 days with SW_IN VPD Tair
........................573
Look up table with window size of 7 days with SW_IN
..................38
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................602
Look up table with window size of 28 days with SW_IN VPD Tair
...........619
Look up table with window size of 35 days with SW_IN VPD Tair
.....386
Look up table with window size of 42 days with SW_IN VPD Tair
.135
Look up table with window size of 49 days with SW_IN VPD Tair
21
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
7
Look up table with window size of 70 days with SW_IN VPD Tair
6
Look up table with window size of 14 days with SW_IN
10
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
4
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.91
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.119
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.142
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..208
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...307
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...284
Look up table with window size of 14 days with SW_IN VPD Tair
.72
Look up table with window size of 7 days with SW_IN
31
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....404
Look up table with window size of 14 days with SW_IN VPD Tair
63
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....533
Look up table with window size of 14 days with SW_IN VPD Tair
22
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......493
Look up table with window size of 14 days with SW_IN VPD Tair
.172
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........541
Look up table with window size of 14 days with SW_IN VPD Tair
..258
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........407
Look up table with window size of 14 days with SW_IN VPD Tair
.....344
Look up table with window size of 7 days with SW_IN
..173
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
26
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........422
Look up table with window size of 14 days with SW_IN VPD Tair
.......410
Look up table with window size of 7 days with SW_IN
...76
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..169
Look up table with window size of 28 days with SW_IN VPD Tair
54
Look up table with window size of 35 days with SW_IN VPD Tair
22
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............527
Look up table with window size of 14 days with SW_IN VPD Tair
........427
Look up table with window size of 7 days with SW_IN
....29
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....320
Look up table with window size of 28 days with SW_IN VPD Tair
73
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................452
Look up table with window size of 14 days with SW_IN VPD Tair
............434
Look up table with window size of 7 days with SW_IN
.......73
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......444
Look up table with window size of 28 days with SW_IN VPD Tair
..172
Look up table with window size of 35 days with SW_IN VPD Tair
.78
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
15
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................467
Look up table with window size of 14 days with SW_IN VPD Tair
...............643
Look up table with window size of 7 days with SW_IN
........29
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........3
Look up table with window size of 21 days with SW_IN VPD Tair
........536
Look up table with window size of 28 days with SW_IN VPD Tair
...212
Look up table with window size of 35 days with SW_IN VPD Tair
.74
Look up table with window size of 42 days with SW_IN VPD Tair
26
Look up table with window size of 49 days with SW_IN VPD Tair
8
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
7
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................460
Look up table with window size of 14 days with SW_IN VPD Tair
...................606
Look up table with window size of 7 days with SW_IN
.............36
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............2
Mean diurnal course with window size of 2 days: .
.............4
Look up table with window size of 21 days with SW_IN VPD Tair
............523
Look up table with window size of 28 days with SW_IN VPD Tair
.......458
Look up table with window size of 35 days with SW_IN VPD Tair
...263
Look up table with window size of 42 days with SW_IN VPD Tair
37
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................514
Look up table with window size of 14 days with SW_IN VPD Tair
.......................395
Look up table with window size of 7 days with SW_IN
...................117
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................625
Look up table with window size of 28 days with SW_IN VPD Tair
............588
Look up table with window size of 35 days with SW_IN VPD Tair
......371
Look up table with window size of 42 days with SW_IN VPD Tair
..137
Look up table with window size of 49 days with SW_IN VPD Tair
.22
Look up table with window size of 56 days with SW_IN VPD Tair
.12
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
32
Look up table with window size of 14 days with SW_IN
31
Look up table with window size of 21 days with SW_IN
14
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
10
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
68
Look up table with window size of 14 days with SW_IN VPD Tair
12
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.148
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.180
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..204
Look up table with window size of 14 days with SW_IN VPD Tair
16
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..244
Look up table with window size of 14 days with SW_IN VPD Tair
23
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...293
Look up table with window size of 14 days with SW_IN VPD Tair
29
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...211
Look up table with window size of 14 days with SW_IN VPD Tair
.60
Look up table with window size of 7 days with SW_IN
.102
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....412
Look up table with window size of 14 days with SW_IN VPD Tair
56
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....529
Look up table with window size of 14 days with SW_IN VPD Tair
26
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......337
Look up table with window size of 14 days with SW_IN VPD Tair
...308
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
18
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........587
Look up table with window size of 14 days with SW_IN VPD Tair
..215
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........597
Look up table with window size of 14 days with SW_IN VPD Tair
...310
Look up table with window size of 7 days with SW_IN
39
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
23
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........452
Look up table with window size of 14 days with SW_IN VPD Tair
.......525
Look up table with window size of 7 days with SW_IN
.50
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 21 days with SW_IN VPD Tair
.104
Look up table with window size of 28 days with SW_IN VPD Tair
20
Look up table with window size of 35 days with SW_IN VPD Tair
11
Look up table with window size of 42 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............397
Look up table with window size of 14 days with SW_IN VPD Tair
..........211
Look up table with window size of 7 days with SW_IN
.......124
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......256
Look up table with window size of 28 days with SW_IN VPD Tair
....124
Look up table with window size of 35 days with SW_IN VPD Tair
..124
Look up table with window size of 42 days with SW_IN VPD Tair
.57
Look up table with window size of 49 days with SW_IN VPD Tair
.22
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
75
Look up table with window size of 21 days with SW_IN
9
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................413
Look up table with window size of 14 days with SW_IN VPD Tair
............699
Look up table with window size of 7 days with SW_IN
.....37
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....426
Look up table with window size of 28 days with SW_IN VPD Tair
.58
Look up table with window size of 35 days with SW_IN VPD Tair
34
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................533
Look up table with window size of 14 days with SW_IN VPD Tair
..............635
Look up table with window size of 7 days with SW_IN
........10
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........1
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........631
Look up table with window size of 28 days with SW_IN VPD Tair
.143
Look up table with window size of 35 days with SW_IN VPD Tair
26
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
9
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................445
Look up table with window size of 14 days with SW_IN VPD Tair
...................638
Look up table with window size of 7 days with SW_IN
.............70
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............654
Look up table with window size of 28 days with SW_IN VPD Tair
.....464
Look up table with window size of 35 days with SW_IN VPD Tair
.76
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
12
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
8
Look up table with window size of 42 days with SW_IN
16
Look up table with window size of 49 days with SW_IN
7
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................405
Look up table with window size of 14 days with SW_IN VPD Tair
........................652
Look up table with window size of 7 days with SW_IN
..................16
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................689
Look up table with window size of 28 days with SW_IN VPD Tair
...........665
Look up table with window size of 35 days with SW_IN VPD Tair
....332
Look up table with window size of 42 days with SW_IN VPD Tair
.99
Look up table with window size of 49 days with SW_IN VPD Tair
9
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
9
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
34
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...292
Look up table with window size of 14 days with SW_IN VPD Tair
30
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...381
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....319
Look up table with window size of 14 days with SW_IN VPD Tair
.79
Look up table with window size of 7 days with SW_IN
70
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....459
Look up table with window size of 14 days with SW_IN VPD Tair
.85
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......347
Look up table with window size of 14 days with SW_IN VPD Tair
...259
Look up table with window size of 7 days with SW_IN
57
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........462
Look up table with window size of 14 days with SW_IN VPD Tair
...308
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
20
Look up table with window size of 28 days with SW_IN VPD Tair
11
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........529
Look up table with window size of 14 days with SW_IN VPD Tair
....403
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
29
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........310
Look up table with window size of 14 days with SW_IN VPD Tair
........302
Look up table with window size of 7 days with SW_IN
.....230
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...238
Look up table with window size of 28 days with SW_IN VPD Tair
24
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
17
Look up table with window size of 21 days with SW_IN
22
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............396
Look up table with window size of 14 days with SW_IN VPD Tair
..........533
Look up table with window size of 7 days with SW_IN
....76
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...350
Look up table with window size of 28 days with SW_IN VPD Tair
36
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................415
Look up table with window size of 14 days with SW_IN VPD Tair
............567
Look up table with window size of 7 days with SW_IN
......43
Mean diurnal course with window size of 0 days: .
......1
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......541
Look up table with window size of 28 days with SW_IN VPD Tair
.101
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................430
Look up table with window size of 14 days with SW_IN VPD Tair
...............401
Look up table with window size of 7 days with SW_IN
...........87
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........357
Look up table with window size of 28 days with SW_IN VPD Tair
.......309
Look up table with window size of 35 days with SW_IN VPD Tair
....277
Look up table with window size of 42 days with SW_IN VPD Tair
.90
Look up table with window size of 49 days with SW_IN VPD Tair
53
Look up table with window size of 56 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................313
Look up table with window size of 14 days with SW_IN VPD Tair
....................388
Look up table with window size of 7 days with SW_IN
.................227
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............1
Look up table with window size of 21 days with SW_IN VPD Tair
..............246
Look up table with window size of 28 days with SW_IN VPD Tair
............418
Look up table with window size of 35 days with SW_IN VPD Tair
........418
Look up table with window size of 42 days with SW_IN VPD Tair
...237
Look up table with window size of 49 days with SW_IN VPD Tair
.82
Look up table with window size of 56 days with SW_IN VPD Tair
6
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
27
Look up table with window size of 21 days with SW_IN
33
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................430
Look up table with window size of 14 days with SW_IN VPD Tair
........................675
Look up table with window size of 7 days with SW_IN
.................76
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................474
Look up table with window size of 28 days with SW_IN VPD Tair
............445
Look up table with window size of 35 days with SW_IN VPD Tair
.......327
Look up table with window size of 42 days with SW_IN VPD Tair
....170
Look up table with window size of 49 days with SW_IN VPD Tair
..136
Look up table with window size of 56 days with SW_IN VPD Tair
.58
Look up table with window size of 63 days with SW_IN VPD Tair
34
Look up table with window size of 70 days with SW_IN VPD Tair
16
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
7
Look up table with window size of 35 days with SW_IN
7
Look up table with window size of 42 days with SW_IN
17
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
5
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
30
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
49
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.125
Look up table with window size of 14 days with SW_IN VPD Tair
25
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...315
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...375
Look up table with window size of 14 days with SW_IN VPD Tair
13
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....352
Look up table with window size of 14 days with SW_IN VPD Tair
.111
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....330
Look up table with window size of 14 days with SW_IN VPD Tair
..177
Look up table with window size of 7 days with SW_IN
51
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......351
Look up table with window size of 14 days with SW_IN VPD Tair
...323
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........459
Look up table with window size of 14 days with SW_IN VPD Tair
...311
Look up table with window size of 7 days with SW_IN
17
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
13
Look up table with window size of 28 days with SW_IN VPD Tair
11
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........318
Look up table with window size of 14 days with SW_IN VPD Tair
......388
Look up table with window size of 7 days with SW_IN
..123
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.101
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
37
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........442
Look up table with window size of 14 days with SW_IN VPD Tair
.......457
Look up table with window size of 7 days with SW_IN
..25
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..236
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............516
Look up table with window size of 14 days with SW_IN VPD Tair
........606
Look up table with window size of 7 days with SW_IN
..2
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..4
Look up table with window size of 21 days with SW_IN VPD Tair
..187
Look up table with window size of 28 days with SW_IN VPD Tair
75
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................208
Look up table with window size of 14 days with SW_IN VPD Tair
..............493
Look up table with window size of 7 days with SW_IN
.........281
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......384
Look up table with window size of 28 days with SW_IN VPD Tair
...295
Look up table with window size of 35 days with SW_IN VPD Tair
14
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................519
Look up table with window size of 14 days with SW_IN VPD Tair
..............549
Look up table with window size of 7 days with SW_IN
.........7
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........630
Look up table with window size of 28 days with SW_IN VPD Tair
...231
Look up table with window size of 35 days with SW_IN VPD Tair
53
Look up table with window size of 42 days with SW_IN VPD Tair
18
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................297
Look up table with window size of 14 days with SW_IN VPD Tair
.....................662
Look up table with window size of 7 days with SW_IN
..............67
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............706
Look up table with window size of 28 days with SW_IN VPD Tair
......449
Look up table with window size of 35 days with SW_IN VPD Tair
..164
Look up table with window size of 42 days with SW_IN VPD Tair
30
Look up table with window size of 49 days with SW_IN VPD Tair
12
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
12
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................514
Look up table with window size of 14 days with SW_IN VPD Tair
.......................569
Look up table with window size of 7 days with SW_IN
.................38
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................706
Look up table with window size of 28 days with SW_IN VPD Tair
..........398
Look up table with window size of 35 days with SW_IN VPD Tair
......306
Look up table with window size of 42 days with SW_IN VPD Tair
...182
Look up table with window size of 49 days with SW_IN VPD Tair
.51
Look up table with window size of 56 days with SW_IN VPD Tair
.42
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
35
Look up table with window size of 35 days with SW_IN
15
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
7
Look up table with window size of 56 days with SW_IN
4
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
63
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.98
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..205
Look up table with window size of 14 days with SW_IN VPD Tair
16
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..244
Look up table with window size of 14 days with SW_IN VPD Tair
23
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...317
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...359
Look up table with window size of 14 days with SW_IN VPD Tair
24
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....396
Look up table with window size of 14 days with SW_IN VPD Tair
72
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....468
Look up table with window size of 14 days with SW_IN VPD Tair
32
Look up table with window size of 7 days with SW_IN
62
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......434
Look up table with window size of 14 days with SW_IN VPD Tair
..211
Look up table with window size of 7 days with SW_IN
31
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........300
Look up table with window size of 14 days with SW_IN VPD Tair
.....312
Look up table with window size of 7 days with SW_IN
.150
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
40
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........585
Look up table with window size of 14 days with SW_IN VPD Tair
...246
Look up table with window size of 7 days with SW_IN
.0
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.96
Look up table with window size of 28 days with SW_IN VPD Tair
30
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
13
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........412
Look up table with window size of 14 days with SW_IN VPD Tair
.......447
Look up table with window size of 7 days with SW_IN
...106
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..3
Look up table with window size of 21 days with SW_IN VPD Tair
.178
Look up table with window size of 28 days with SW_IN VPD Tair
6
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............360
Look up table with window size of 14 days with SW_IN VPD Tair
..........503
Look up table with window size of 7 days with SW_IN
.....165
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...294
Look up table with window size of 28 days with SW_IN VPD Tair
49
Look up table with window size of 35 days with SW_IN VPD Tair
26
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................461
Look up table with window size of 14 days with SW_IN VPD Tair
............527
Look up table with window size of 7 days with SW_IN
......51
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......510
Look up table with window size of 28 days with SW_IN VPD Tair
.114
Look up table with window size of 35 days with SW_IN VPD Tair
13
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................467
Look up table with window size of 14 days with SW_IN VPD Tair
...............678
Look up table with window size of 7 days with SW_IN
........20
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........398
Look up table with window size of 28 days with SW_IN VPD Tair
....372
Look up table with window size of 35 days with SW_IN VPD Tair
60
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................563
Look up table with window size of 14 days with SW_IN VPD Tair
..................638
Look up table with window size of 7 days with SW_IN
............54
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........8
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........542
Look up table with window size of 28 days with SW_IN VPD Tair
......381
Look up table with window size of 35 days with SW_IN VPD Tair
..162
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
12
Look up table with window size of 56 days with SW_IN VPD Tair
15
Look up table with window size of 63 days with SW_IN VPD Tair
5
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
10
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................437
Look up table with window size of 14 days with SW_IN VPD Tair
........................591
Look up table with window size of 7 days with SW_IN
..................11
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................728
Look up table with window size of 28 days with SW_IN VPD Tair
...........610
Look up table with window size of 35 days with SW_IN VPD Tair
.....378
Look up table with window size of 42 days with SW_IN VPD Tair
.44
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
20
Look up table with window size of 63 days with SW_IN VPD Tair
17
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
21
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
7
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
11
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.98
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..252
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...285
Look up table with window size of 14 days with SW_IN VPD Tair
.88
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....413
Look up table with window size of 14 days with SW_IN VPD Tair
53
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....379
Look up table with window size of 14 days with SW_IN VPD Tair
.173
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......386
Look up table with window size of 14 days with SW_IN VPD Tair
..199
Look up table with window size of 7 days with SW_IN
81
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........401
Look up table with window size of 14 days with SW_IN VPD Tair
....378
Look up table with window size of 7 days with SW_IN
23
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
8
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........475
Look up table with window size of 14 days with SW_IN VPD Tair
....311
Look up table with window size of 7 days with SW_IN
.36
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.116
Look up table with window size of 28 days with SW_IN VPD Tair
21
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
10
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........520
Look up table with window size of 14 days with SW_IN VPD Tair
......409
Look up table with window size of 7 days with SW_IN
..30
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..5
Mean diurnal course with window size of 2 days: .
..2
Look up table with window size of 21 days with SW_IN VPD Tair
..174
Look up table with window size of 28 days with SW_IN VPD Tair
21
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............344
Look up table with window size of 14 days with SW_IN VPD Tair
..........424
Look up table with window size of 7 days with SW_IN
......235
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...127
Look up table with window size of 28 days with SW_IN VPD Tair
..88
Look up table with window size of 35 days with SW_IN VPD Tair
.160
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
10
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................524
Look up table with window size of 14 days with SW_IN VPD Tair
...........586
Look up table with window size of 7 days with SW_IN
.....35
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....408
Look up table with window size of 28 days with SW_IN VPD Tair
.105
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................561
Look up table with window size of 14 days with SW_IN VPD Tair
..............606
Look up table with window size of 7 days with SW_IN
........14
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........506
Look up table with window size of 28 days with SW_IN VPD Tair
...187
Look up table with window size of 35 days with SW_IN VPD Tair
.119
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
3
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................414
Look up table with window size of 14 days with SW_IN VPD Tair
...................580
Look up table with window size of 7 days with SW_IN
..............150
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............486
Look up table with window size of 28 days with SW_IN VPD Tair
.......181
Look up table with window size of 35 days with SW_IN VPD Tair
.....148
Look up table with window size of 42 days with SW_IN VPD Tair
....227
Look up table with window size of 49 days with SW_IN VPD Tair
..138
Look up table with window size of 56 days with SW_IN VPD Tair
14
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
6
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
28
Look up table with window size of 28 days with SW_IN
31
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................422
Look up table with window size of 14 days with SW_IN VPD Tair
........................604
Look up table with window size of 7 days with SW_IN
..................34
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................1
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................715
Look up table with window size of 28 days with SW_IN VPD Tair
...........610
Look up table with window size of 35 days with SW_IN VPD Tair
....379
Look up table with window size of 42 days with SW_IN VPD Tair
.83
Look up table with window size of 49 days with SW_IN VPD Tair
25
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.145
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..210
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..258
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...308
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...375
Look up table with window size of 14 days with SW_IN VPD Tair
13
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....443
Look up table with window size of 14 days with SW_IN VPD Tair
24
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....414
Look up table with window size of 14 days with SW_IN VPD Tair
.145
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......495
Look up table with window size of 14 days with SW_IN VPD Tair
.161
Look up table with window size of 7 days with SW_IN
16
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........537
Look up table with window size of 14 days with SW_IN VPD Tair
..258
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........392
Look up table with window size of 14 days with SW_IN VPD Tair
.....342
Look up table with window size of 7 days with SW_IN
..109
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.55
Look up table with window size of 28 days with SW_IN VPD Tair
72
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........600
Look up table with window size of 14 days with SW_IN VPD Tair
.....262
Look up table with window size of 7 days with SW_IN
...36
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..267
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............606
Look up table with window size of 14 days with SW_IN VPD Tair
.......610
Look up table with window size of 7 days with SW_IN
.0
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.179
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................553
Look up table with window size of 14 days with SW_IN VPD Tair
...........635
Look up table with window size of 7 days with SW_IN
....9
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....440
Look up table with window size of 28 days with SW_IN VPD Tair
24
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................372
Look up table with window size of 14 days with SW_IN VPD Tair
................765
Look up table with window size of 7 days with SW_IN
........97
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......1
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......576
Look up table with window size of 28 days with SW_IN VPD Tair
.162
Look up table with window size of 35 days with SW_IN VPD Tair
31
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................535
Look up table with window size of 14 days with SW_IN VPD Tair
..................530
Look up table with window size of 7 days with SW_IN
.............35
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............2
Look up table with window size of 21 days with SW_IN VPD Tair
.............314
Look up table with window size of 28 days with SW_IN VPD Tair
.........444
Look up table with window size of 35 days with SW_IN VPD Tair
.....324
Look up table with window size of 42 days with SW_IN VPD Tair
..95
Look up table with window size of 49 days with SW_IN VPD Tair
.12
Look up table with window size of 56 days with SW_IN VPD Tair
.10
Look up table with window size of 63 days with SW_IN VPD Tair
.5
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
15
Look up table with window size of 21 days with SW_IN
66
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
14
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................503
Look up table with window size of 14 days with SW_IN VPD Tair
.......................400
Look up table with window size of 7 days with SW_IN
...................55
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................743
Look up table with window size of 28 days with SW_IN VPD Tair
...........681
Look up table with window size of 35 days with SW_IN VPD Tair
....398
Look up table with window size of 42 days with SW_IN VPD Tair
26
Look up table with window size of 49 days with SW_IN VPD Tair
45
Look up table with window size of 56 days with SW_IN VPD Tair
9
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
8
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
3
Look up table with window size of 63 days with SW_IN
5
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
46
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.136
Look up table with window size of 14 days with SW_IN VPD Tair
12
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.166
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..265
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...300
Look up table with window size of 14 days with SW_IN VPD Tair
88
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....367
Look up table with window size of 14 days with SW_IN VPD Tair
.72
Look up table with window size of 7 days with SW_IN
20
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....507
Look up table with window size of 14 days with SW_IN VPD Tair
42
Look up table with window size of 7 days with SW_IN
13
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......598
Look up table with window size of 14 days with SW_IN VPD Tair
76
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........546
Look up table with window size of 14 days with SW_IN VPD Tair
..223
Look up table with window size of 7 days with SW_IN
24
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
7
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........429
Look up table with window size of 14 days with SW_IN VPD Tair
.....391
Look up table with window size of 7 days with SW_IN
.31
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.69
Look up table with window size of 28 days with SW_IN VPD Tair
23
Look up table with window size of 35 days with SW_IN VPD Tair
16
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........436
Look up table with window size of 14 days with SW_IN VPD Tair
.......673
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
36
Look up table with window size of 28 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............411
Look up table with window size of 14 days with SW_IN VPD Tair
.........604
Look up table with window size of 7 days with SW_IN
...11
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...297
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
45
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................358
Look up table with window size of 14 days with SW_IN VPD Tair
.............442
Look up table with window size of 7 days with SW_IN
........101
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......542
Look up table with window size of 28 days with SW_IN VPD Tair
..212
Look up table with window size of 35 days with SW_IN VPD Tair
15
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................473
Look up table with window size of 14 days with SW_IN VPD Tair
...............515
Look up table with window size of 7 days with SW_IN
..........56
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........732
Look up table with window size of 28 days with SW_IN VPD Tair
..158
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
14
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
31
Look up table with window size of 21 days with SW_IN
13
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................474
Look up table with window size of 14 days with SW_IN VPD Tair
...................437
Look up table with window size of 7 days with SW_IN
..............32
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............568
Look up table with window size of 28 days with SW_IN VPD Tair
........607
Look up table with window size of 35 days with SW_IN VPD Tair
..229
Look up table with window size of 42 days with SW_IN VPD Tair
21
Look up table with window size of 49 days with SW_IN VPD Tair
26
Look up table with window size of 56 days with SW_IN VPD Tair
8
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................513
Look up table with window size of 14 days with SW_IN VPD Tair
.......................517
Look up table with window size of 7 days with SW_IN
..................19
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................665
Look up table with window size of 28 days with SW_IN VPD Tair
...........778
Look up table with window size of 35 days with SW_IN VPD Tair
...353
Look up table with window size of 42 days with SW_IN VPD Tair
12
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
39
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
79
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.178
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..216
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..187
Look up table with window size of 14 days with SW_IN VPD Tair
18
Look up table with window size of 7 days with SW_IN
61
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...301
Look up table with window size of 14 days with SW_IN VPD Tair
19
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...349
Look up table with window size of 14 days with SW_IN VPD Tair
38
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....430
Look up table with window size of 14 days with SW_IN VPD Tair
20
Look up table with window size of 7 days with SW_IN
17
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....365
Look up table with window size of 14 days with SW_IN VPD Tair
.97
Look up table with window size of 7 days with SW_IN
.93
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......521
Look up table with window size of 14 days with SW_IN VPD Tair
.134
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........351
Look up table with window size of 14 days with SW_IN VPD Tair
....333
Look up table with window size of 7 days with SW_IN
.90
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
35
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........412
Look up table with window size of 14 days with SW_IN VPD Tair
.....281
Look up table with window size of 7 days with SW_IN
..130
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.134
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........434
Look up table with window size of 14 days with SW_IN VPD Tair
.......443
Look up table with window size of 7 days with SW_IN
..68
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..169
Look up table with window size of 28 days with SW_IN VPD Tair
49
Look up table with window size of 35 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............376
Look up table with window size of 14 days with SW_IN VPD Tair
..........859
Look up table with window size of 7 days with SW_IN
.15
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.147
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................400
Look up table with window size of 14 days with SW_IN VPD Tair
............607
Look up table with window size of 7 days with SW_IN
......21
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......498
Look up table with window size of 28 days with SW_IN VPD Tair
.117
Look up table with window size of 35 days with SW_IN VPD Tair
27
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................500
Look up table with window size of 14 days with SW_IN VPD Tair
...............494
Look up table with window size of 7 days with SW_IN
..........30
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........3
Look up table with window size of 21 days with SW_IN VPD Tair
.........627
Look up table with window size of 28 days with SW_IN VPD Tair
...244
Look up table with window size of 35 days with SW_IN VPD Tair
.66
Look up table with window size of 42 days with SW_IN VPD Tair
39
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................494
Look up table with window size of 14 days with SW_IN VPD Tair
...................644
Look up table with window size of 7 days with SW_IN
............12
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............673
Look up table with window size of 28 days with SW_IN VPD Tair
.....517
Look up table with window size of 35 days with SW_IN VPD Tair
37
Look up table with window size of 42 days with SW_IN VPD Tair
21
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................626
Look up table with window size of 14 days with SW_IN VPD Tair
......................578
Look up table with window size of 7 days with SW_IN
................3
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................495
Look up table with window size of 28 days with SW_IN VPD Tair
...........403
Look up table with window size of 35 days with SW_IN VPD Tair
.......358
Look up table with window size of 42 days with SW_IN VPD Tair
....377
Look up table with window size of 49 days with SW_IN VPD Tair
37
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.149
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..259
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...308
Look up table with window size of 14 days with SW_IN VPD Tair
14
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...360
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....464
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....447
Look up table with window size of 14 days with SW_IN VPD Tair
.114
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......326
Look up table with window size of 14 days with SW_IN VPD Tair
...210
Look up table with window size of 7 days with SW_IN
.118
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........464
Look up table with window size of 14 days with SW_IN VPD Tair
...313
Look up table with window size of 7 days with SW_IN
20
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
12
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........561
Look up table with window size of 14 days with SW_IN VPD Tair
....313
Look up table with window size of 7 days with SW_IN
25
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
69
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........477
Look up table with window size of 14 days with SW_IN VPD Tair
......520
Look up table with window size of 7 days with SW_IN
.33
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.109
Look up table with window size of 28 days with SW_IN VPD Tair
22
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............380
Look up table with window size of 14 days with SW_IN VPD Tair
..........592
Look up table with window size of 7 days with SW_IN
....86
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...266
Look up table with window size of 28 days with SW_IN VPD Tair
28
Look up table with window size of 35 days with SW_IN VPD Tair
25
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................325
Look up table with window size of 14 days with SW_IN VPD Tair
.............565
Look up table with window size of 7 days with SW_IN
.......191
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....516
Look up table with window size of 28 days with SW_IN VPD Tair
43
Look up table with window size of 35 days with SW_IN VPD Tair
16
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
8
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................436
Look up table with window size of 14 days with SW_IN VPD Tair
...............307
Look up table with window size of 7 days with SW_IN
............85
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........694
Look up table with window size of 28 days with SW_IN VPD Tair
....158
Look up table with window size of 35 days with SW_IN VPD Tair
...158
Look up table with window size of 42 days with SW_IN VPD Tair
.105
Look up table with window size of 49 days with SW_IN VPD Tair
22
Look up table with window size of 56 days with SW_IN VPD Tair
13
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
14
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
6
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................471
Look up table with window size of 14 days with SW_IN VPD Tair
...................567
Look up table with window size of 7 days with SW_IN
.............9
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 21 days with SW_IN VPD Tair
.............419
Look up table with window size of 28 days with SW_IN VPD Tair
.........582
Look up table with window size of 35 days with SW_IN VPD Tair
...224
Look up table with window size of 42 days with SW_IN VPD Tair
.17
Look up table with window size of 49 days with SW_IN VPD Tair
.11
Look up table with window size of 56 days with SW_IN VPD Tair
.28
Look up table with window size of 63 days with SW_IN VPD Tair
21
Look up table with window size of 70 days with SW_IN VPD Tair
21
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
12
Look up table with window size of 28 days with SW_IN
17
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................480
Look up table with window size of 14 days with SW_IN VPD Tair
.......................572
Look up table with window size of 7 days with SW_IN
..................4
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................681
Look up table with window size of 28 days with SW_IN VPD Tair
...........435
Look up table with window size of 35 days with SW_IN VPD Tair
.......450
Look up table with window size of 42 days with SW_IN VPD Tair
..173
Look up table with window size of 49 days with SW_IN VPD Tair
12
Look up table with window size of 56 days with SW_IN VPD Tair
19
Look up table with window size of 63 days with SW_IN VPD Tair
9
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
24
Look up table with window size of 35 days with SW_IN
5
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
3
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
10
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.97
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.119
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.131
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...318
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...382
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....392
Look up table with window size of 14 days with SW_IN VPD Tair
59
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....528
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
21
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......509
Look up table with window size of 14 days with SW_IN VPD Tair
.167
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........558
Look up table with window size of 14 days with SW_IN VPD Tair
..234
Look up table with window size of 7 days with SW_IN
15
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........494
Look up table with window size of 14 days with SW_IN VPD Tair
....459
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........283
Look up table with window size of 14 days with SW_IN VPD Tair
........490
Look up table with window size of 7 days with SW_IN
...214
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.132
Look up table with window size of 28 days with SW_IN VPD Tair
30
Look up table with window size of 35 days with SW_IN VPD Tair
12
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............520
Look up table with window size of 14 days with SW_IN VPD Tair
........471
Look up table with window size of 7 days with SW_IN
....0
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....337
Look up table with window size of 28 days with SW_IN VPD Tair
68
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................310
Look up table with window size of 14 days with SW_IN VPD Tair
.............683
Look up table with window size of 7 days with SW_IN
......46
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......452
Look up table with window size of 28 days with SW_IN VPD Tair
.93
Look up table with window size of 35 days with SW_IN VPD Tair
84
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................399
Look up table with window size of 14 days with SW_IN VPD Tair
................359
Look up table with window size of 7 days with SW_IN
............212
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........214
Look up table with window size of 28 days with SW_IN VPD Tair
........310
Look up table with window size of 35 days with SW_IN VPD Tair
.....260
Look up table with window size of 42 days with SW_IN VPD Tair
..232
Look up table with window size of 49 days with SW_IN VPD Tair
22
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................387
Look up table with window size of 14 days with SW_IN VPD Tair
....................516
Look up table with window size of 7 days with SW_IN
...............136
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............8
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............540
Look up table with window size of 28 days with SW_IN VPD Tair
........367
Look up table with window size of 35 days with SW_IN VPD Tair
....154
Look up table with window size of 42 days with SW_IN VPD Tair
..57
Look up table with window size of 49 days with SW_IN VPD Tair
..13
Look up table with window size of 56 days with SW_IN VPD Tair
..19
Look up table with window size of 63 days with SW_IN VPD Tair
..0
Look up table with window size of 70 days with SW_IN VPD Tair
..0
Look up table with window size of 14 days with SW_IN
..52
Look up table with window size of 21 days with SW_IN
.87
Look up table with window size of 28 days with SW_IN
63
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
4
Mean diurnal course with window size of 21 days: .
1
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................598
Look up table with window size of 14 days with SW_IN VPD Tair
......................582
Look up table with window size of 7 days with SW_IN
................37
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................391
Look up table with window size of 28 days with SW_IN VPD Tair
............736
Look up table with window size of 35 days with SW_IN VPD Tair
.....389
Look up table with window size of 42 days with SW_IN VPD Tair
.115
Look up table with window size of 49 days with SW_IN VPD Tair
27
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.118
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..245
Look up table with window size of 14 days with SW_IN VPD Tair
22
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...316
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...370
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....393
Look up table with window size of 14 days with SW_IN VPD Tair
71
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....459
Look up table with window size of 14 days with SW_IN VPD Tair
.81
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......512
Look up table with window size of 14 days with SW_IN VPD Tair
.113
Look up table with window size of 7 days with SW_IN
38
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
9
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........500
Look up table with window size of 14 days with SW_IN VPD Tair
...247
Look up table with window size of 7 days with SW_IN
50
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........438
Look up table with window size of 14 days with SW_IN VPD Tair
.....483
Look up table with window size of 7 days with SW_IN
41
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........497
Look up table with window size of 14 days with SW_IN VPD Tair
......446
Look up table with window size of 7 days with SW_IN
..30
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.2
Look up table with window size of 21 days with SW_IN VPD Tair
.154
Look up table with window size of 28 days with SW_IN VPD Tair
12
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
12
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............517
Look up table with window size of 14 days with SW_IN VPD Tair
........685
Look up table with window size of 7 days with SW_IN
.18
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.135
Look up table with window size of 28 days with SW_IN VPD Tair
44
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................452
Look up table with window size of 14 days with SW_IN VPD Tair
............446
Look up table with window size of 7 days with SW_IN
.......63
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......4
Mean diurnal course with window size of 2 days: .
.......2
Look up table with window size of 21 days with SW_IN VPD Tair
.......337
Look up table with window size of 28 days with SW_IN VPD Tair
...287
Look up table with window size of 35 days with SW_IN VPD Tair
45
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
9
Look up table with window size of 21 days with SW_IN
16
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................453
Look up table with window size of 14 days with SW_IN VPD Tair
...............684
Look up table with window size of 7 days with SW_IN
........81
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......505
Look up table with window size of 28 days with SW_IN VPD Tair
..136
Look up table with window size of 35 days with SW_IN VPD Tair
.75
Look up table with window size of 42 days with SW_IN VPD Tair
18
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
23
Look up table with window size of 21 days with SW_IN
27
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................544
Look up table with window size of 14 days with SW_IN VPD Tair
..................555
Look up table with window size of 7 days with SW_IN
.............28
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............575
Look up table with window size of 28 days with SW_IN VPD Tair
.......502
Look up table with window size of 35 days with SW_IN VPD Tair
..147
Look up table with window size of 42 days with SW_IN VPD Tair
29
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
9
Look up table with window size of 49 days with SW_IN
4
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................529
Look up table with window size of 14 days with SW_IN VPD Tair
.......................674
Look up table with window size of 7 days with SW_IN
................1
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................694
Look up table with window size of 28 days with SW_IN VPD Tair
.........606
Look up table with window size of 35 days with SW_IN VPD Tair
...274
Look up table with window size of 42 days with SW_IN VPD Tair
.35
Look up table with window size of 49 days with SW_IN VPD Tair
9
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
15
Look up table with window size of 49 days with SW_IN
22
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.98
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.148
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.176
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..211
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..247
Look up table with window size of 14 days with SW_IN VPD Tair
20
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...316
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...362
Look up table with window size of 14 days with SW_IN VPD Tair
26
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....454
Look up table with window size of 14 days with SW_IN VPD Tair
14
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....312
Look up table with window size of 14 days with SW_IN VPD Tair
..208
Look up table with window size of 7 days with SW_IN
42
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......377
Look up table with window size of 14 days with SW_IN VPD Tair
..233
Look up table with window size of 7 days with SW_IN
65
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........530
Look up table with window size of 14 days with SW_IN VPD Tair
..217
Look up table with window size of 7 days with SW_IN
45
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
16
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........558
Look up table with window size of 14 days with SW_IN VPD Tair
....407
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........537
Look up table with window size of 14 days with SW_IN VPD Tair
......430
Look up table with window size of 7 days with SW_IN
..90
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.2
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.84
Look up table with window size of 28 days with SW_IN VPD Tair
14
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............487
Look up table with window size of 14 days with SW_IN VPD Tair
.........444
Look up table with window size of 7 days with SW_IN
....135
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...115
Look up table with window size of 28 days with SW_IN VPD Tair
..131
Look up table with window size of 35 days with SW_IN VPD Tair
71
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
15
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................596
Look up table with window size of 14 days with SW_IN VPD Tair
..........413
Look up table with window size of 7 days with SW_IN
......24
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......336
Look up table with window size of 28 days with SW_IN VPD Tair
...135
Look up table with window size of 35 days with SW_IN VPD Tair
.103
Look up table with window size of 42 days with SW_IN VPD Tair
33
Look up table with window size of 49 days with SW_IN VPD Tair
15
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
9
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................572
Look up table with window size of 14 days with SW_IN VPD Tair
..............659
Look up table with window size of 7 days with SW_IN
.......2
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......612
Look up table with window size of 28 days with SW_IN VPD Tair
.132
Look up table with window size of 35 days with SW_IN VPD Tair
20
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................539
Look up table with window size of 14 days with SW_IN VPD Tair
..................475
Look up table with window size of 7 days with SW_IN
.............17
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............693
Look up table with window size of 28 days with SW_IN VPD Tair
......509
Look up table with window size of 35 days with SW_IN VPD Tair
.99
Look up table with window size of 42 days with SW_IN VPD Tair
30
Look up table with window size of 49 days with SW_IN VPD Tair
19
Look up table with window size of 56 days with SW_IN VPD Tair
6
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
9
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................428
Look up table with window size of 14 days with SW_IN VPD Tair
........................652
Look up table with window size of 7 days with SW_IN
.................67
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................640
Look up table with window size of 28 days with SW_IN VPD Tair
..........633
Look up table with window size of 35 days with SW_IN VPD Tair
....217
Look up table with window size of 42 days with SW_IN VPD Tair
..96
Look up table with window size of 49 days with SW_IN VPD Tair
.89
Look up table with window size of 56 days with SW_IN VPD Tair
27
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
13
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
7
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
50
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
62
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.178
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..255
Look up table with window size of 14 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...354
Look up table with window size of 14 days with SW_IN VPD Tair
18
Look up table with window size of 7 days with SW_IN
16
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....429
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
26
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....454
Look up table with window size of 14 days with SW_IN VPD Tair
.55
Look up table with window size of 7 days with SW_IN
53
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......457
Look up table with window size of 14 days with SW_IN VPD Tair
..122
Look up table with window size of 7 days with SW_IN
88
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........512
Look up table with window size of 14 days with SW_IN VPD Tair
..228
Look up table with window size of 7 days with SW_IN
71
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........460
Look up table with window size of 14 days with SW_IN VPD Tair
.....425
Look up table with window size of 7 days with SW_IN
38
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
40
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........418
Look up table with window size of 14 days with SW_IN VPD Tair
.......341
Look up table with window size of 7 days with SW_IN
....117
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..183
Look up table with window size of 28 days with SW_IN VPD Tair
.60
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
29
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............561
Look up table with window size of 14 days with SW_IN VPD Tair
........599
Look up table with window size of 7 days with SW_IN
..22
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..173
Look up table with window size of 28 days with SW_IN VPD Tair
27
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................505
Look up table with window size of 14 days with SW_IN VPD Tair
...........675
Look up table with window size of 7 days with SW_IN
....5
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....438
Look up table with window size of 28 days with SW_IN VPD Tair
23
Look up table with window size of 35 days with SW_IN VPD Tair
21
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................507
Look up table with window size of 14 days with SW_IN VPD Tair
...............582
Look up table with window size of 7 days with SW_IN
.........8
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........680
Look up table with window size of 28 days with SW_IN VPD Tair
..152
Look up table with window size of 35 days with SW_IN VPD Tair
49
Look up table with window size of 42 days with SW_IN VPD Tair
25
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................462
Look up table with window size of 14 days with SW_IN VPD Tair
...................616
Look up table with window size of 7 days with SW_IN
.............62
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............662
Look up table with window size of 28 days with SW_IN VPD Tair
......513
Look up table with window size of 35 days with SW_IN VPD Tair
41
Look up table with window size of 42 days with SW_IN VPD Tair
17
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
18
Look up table with window size of 42 days with SW_IN
4
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................489
Look up table with window size of 14 days with SW_IN VPD Tair
.......................470
Look up table with window size of 7 days with SW_IN
...................87
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................613
Look up table with window size of 28 days with SW_IN VPD Tair
............596
Look up table with window size of 35 days with SW_IN VPD Tair
......217
Look up table with window size of 42 days with SW_IN VPD Tair
....62
Look up table with window size of 49 days with SW_IN VPD Tair
...104
Look up table with window size of 56 days with SW_IN VPD Tair
..73
Look up table with window size of 63 days with SW_IN VPD Tair
.22
Look up table with window size of 70 days with SW_IN VPD Tair
.10
Look up table with window size of 14 days with SW_IN
.47
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
23
Look up table with window size of 35 days with SW_IN
63
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
2
Finished gap filling of 'PA' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
60
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.98
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.153
Look up table with window size of 14 days with SW_IN VPD Tair
28
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..258
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...308
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...323
Look up table with window size of 14 days with SW_IN VPD Tair
62
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....377
Look up table with window size of 14 days with SW_IN VPD Tair
91
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....322
Look up table with window size of 14 days with SW_IN VPD Tair
..144
Look up table with window size of 7 days with SW_IN
95
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......120
Look up table with window size of 14 days with SW_IN VPD Tair
.....237
Look up table with window size of 7 days with SW_IN
...264
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
52
Look up table with window size of 28 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........483
Look up table with window size of 14 days with SW_IN VPD Tair
...270
Look up table with window size of 7 days with SW_IN
56
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........449
Look up table with window size of 14 days with SW_IN VPD Tair
.....342
Look up table with window size of 7 days with SW_IN
.90
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 21 days with SW_IN VPD Tair
41
Look up table with window size of 28 days with SW_IN VPD Tair
23
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........449
Look up table with window size of 14 days with SW_IN VPD Tair
.......505
Look up table with window size of 7 days with SW_IN
..69
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.111
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
5
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............369
Look up table with window size of 14 days with SW_IN VPD Tair
..........638
Look up table with window size of 7 days with SW_IN
...48
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...251
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
14
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
72
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................444
Look up table with window size of 14 days with SW_IN VPD Tair
............439
Look up table with window size of 7 days with SW_IN
.......147
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......5
Look up table with window size of 21 days with SW_IN VPD Tair
......490
Look up table with window size of 28 days with SW_IN VPD Tair
.116
Look up table with window size of 35 days with SW_IN VPD Tair
13
Look up table with window size of 42 days with SW_IN VPD Tair
15
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................551
Look up table with window size of 14 days with SW_IN VPD Tair
..............684
Look up table with window size of 7 days with SW_IN
.......50
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......489
Look up table with window size of 28 days with SW_IN VPD Tair
..41
Look up table with window size of 35 days with SW_IN VPD Tair
.7
Look up table with window size of 42 days with SW_IN VPD Tair
.20
Look up table with window size of 49 days with SW_IN VPD Tair
.12
Look up table with window size of 56 days with SW_IN VPD Tair
.0
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.0
Look up table with window size of 21 days with SW_IN
.154
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................306
Look up table with window size of 14 days with SW_IN VPD Tair
....................520
Look up table with window size of 7 days with SW_IN
...............82
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............3
Look up table with window size of 21 days with SW_IN VPD Tair
..............559
Look up table with window size of 28 days with SW_IN VPD Tair
.........499
Look up table with window size of 35 days with SW_IN VPD Tair
....212
Look up table with window size of 42 days with SW_IN VPD Tair
..201
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
9
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................506
Look up table with window size of 14 days with SW_IN VPD Tair
.......................564
Look up table with window size of 7 days with SW_IN
..................19
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................1
Look up table with window size of 21 days with SW_IN VPD Tair
.................709
Look up table with window size of 28 days with SW_IN VPD Tair
..........427
Look up table with window size of 35 days with SW_IN VPD Tair
......370
Look up table with window size of 42 days with SW_IN VPD Tair
..65
Look up table with window size of 49 days with SW_IN VPD Tair
..11
Look up table with window size of 56 days with SW_IN VPD Tair
..16
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.0
Look up table with window size of 21 days with SW_IN
.15
Look up table with window size of 28 days with SW_IN
.102
Look up table with window size of 35 days with SW_IN
70
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.113
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.135
Look up table with window size of 14 days with SW_IN VPD Tair
25
Look up table with window size of 7 days with SW_IN
22
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..210
Look up table with window size of 14 days with SW_IN VPD Tair
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..260
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...246
Look up table with window size of 14 days with SW_IN VPD Tair
75
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...321
Look up table with window size of 14 days with SW_IN VPD Tair
62
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....426
Look up table with window size of 14 days with SW_IN VPD Tair
42
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....278
Look up table with window size of 14 days with SW_IN VPD Tair
..214
Look up table with window size of 7 days with SW_IN
69
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......616
Look up table with window size of 14 days with SW_IN VPD Tair
49
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........420
Look up table with window size of 14 days with SW_IN VPD Tair
...318
Look up table with window size of 7 days with SW_IN
37
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
32
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........571
Look up table with window size of 14 days with SW_IN VPD Tair
....320
Look up table with window size of 7 days with SW_IN
31
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
42
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........561
Look up table with window size of 14 days with SW_IN VPD Tair
......546
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
51
Look up table with window size of 28 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............447
Look up table with window size of 14 days with SW_IN VPD Tair
.........579
Look up table with window size of 7 days with SW_IN
...33
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...313
Look up table with window size of 28 days with SW_IN VPD Tair
18
Look up table with window size of 35 days with SW_IN VPD Tair
9
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................556
Look up table with window size of 14 days with SW_IN VPD Tair
...........648
Look up table with window size of 7 days with SW_IN
....26
Mean diurnal course with window size of 0 days: .
....1
Mean diurnal course with window size of 1 days: .
....1
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....361
Look up table with window size of 28 days with SW_IN VPD Tair
59
Look up table with window size of 35 days with SW_IN VPD Tair
19
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................412
Look up table with window size of 14 days with SW_IN VPD Tair
...............694
Look up table with window size of 7 days with SW_IN
.........64
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........497
Look up table with window size of 28 days with SW_IN VPD Tair
...210
Look up table with window size of 35 days with SW_IN VPD Tair
.114
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................298
Look up table with window size of 14 days with SW_IN VPD Tair
.....................471
Look up table with window size of 7 days with SW_IN
................230
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............435
Look up table with window size of 28 days with SW_IN VPD Tair
.........602
Look up table with window size of 35 days with SW_IN VPD Tair
...133
Look up table with window size of 42 days with SW_IN VPD Tair
..135
Look up table with window size of 49 days with SW_IN VPD Tair
.17
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
39
Look up table with window size of 21 days with SW_IN
36
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
4
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................513
Look up table with window size of 14 days with SW_IN VPD Tair
.......................469
Look up table with window size of 7 days with SW_IN
..................77
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................502
Look up table with window size of 28 days with SW_IN VPD Tair
.............552
Look up table with window size of 35 days with SW_IN VPD Tair
.......517
Look up table with window size of 42 days with SW_IN VPD Tair
..176
Look up table with window size of 49 days with SW_IN VPD Tair
39
Look up table with window size of 56 days with SW_IN VPD Tair
16
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
36
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
63
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.119
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..187
Look up table with window size of 14 days with SW_IN VPD Tair
30
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..248
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...314
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...301
Look up table with window size of 14 days with SW_IN VPD Tair
85
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....360
Look up table with window size of 14 days with SW_IN VPD Tair
.108
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....534
Look up table with window size of 14 days with SW_IN VPD Tair
15
Look up table with window size of 7 days with SW_IN
13
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......416
Look up table with window size of 14 days with SW_IN VPD Tair
..156
Look up table with window size of 7 days with SW_IN
.87
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........423
Look up table with window size of 14 days with SW_IN VPD Tair
...371
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........459
Look up table with window size of 14 days with SW_IN VPD Tair
.....351
Look up table with window size of 7 days with SW_IN
.88
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
45
Look up table with window size of 28 days with SW_IN VPD Tair
18
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........384
Look up table with window size of 14 days with SW_IN VPD Tair
.......567
Look up table with window size of 7 days with SW_IN
..64
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.150
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............522
Look up table with window size of 14 days with SW_IN VPD Tair
........629
Look up table with window size of 7 days with SW_IN
..34
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..2
Look up table with window size of 21 days with SW_IN VPD Tair
..169
Look up table with window size of 28 days with SW_IN VPD Tair
21
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................394
Look up table with window size of 14 days with SW_IN VPD Tair
............726
Look up table with window size of 7 days with SW_IN
.....112
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....422
Look up table with window size of 28 days with SW_IN VPD Tair
8
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................479
Look up table with window size of 14 days with SW_IN VPD Tair
...............584
Look up table with window size of 7 days with SW_IN
.........38
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........1
Mean diurnal course with window size of 2 days: .
.........2
Look up table with window size of 21 days with SW_IN VPD Tair
.........439
Look up table with window size of 28 days with SW_IN VPD Tair
....285
Look up table with window size of 35 days with SW_IN VPD Tair
.111
Look up table with window size of 42 days with SW_IN VPD Tair
32
Look up table with window size of 49 days with SW_IN VPD Tair
21
Look up table with window size of 56 days with SW_IN VPD Tair
12
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................536
Look up table with window size of 14 days with SW_IN VPD Tair
..................677
Look up table with window size of 7 days with SW_IN
...........27
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........2
Look up table with window size of 21 days with SW_IN VPD Tair
...........685
Look up table with window size of 28 days with SW_IN VPD Tair
....450
Look up table with window size of 35 days with SW_IN VPD Tair
20
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................571
Look up table with window size of 14 days with SW_IN VPD Tair
.......................633
Look up table with window size of 7 days with SW_IN
................6
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................737
Look up table with window size of 28 days with SW_IN VPD Tair
.........533
Look up table with window size of 35 days with SW_IN VPD Tair
...347
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
13
Look up table with window size of 42 days with SW_IN
12
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.126
Look up table with window size of 14 days with SW_IN VPD Tair
19
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.178
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..257
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...282
Look up table with window size of 14 days with SW_IN VPD Tair
37
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...379
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....455
Look up table with window size of 14 days with SW_IN VPD Tair
12
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....480
Look up table with window size of 14 days with SW_IN VPD Tair
47
Look up table with window size of 7 days with SW_IN
34
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......284
Look up table with window size of 14 days with SW_IN VPD Tair
...391
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........419
Look up table with window size of 14 days with SW_IN VPD Tair
...352
Look up table with window size of 7 days with SW_IN
39
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........401
Look up table with window size of 14 days with SW_IN VPD Tair
.....397
Look up table with window size of 7 days with SW_IN
.41
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.113
Look up table with window size of 28 days with SW_IN VPD Tair
19
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........493
Look up table with window size of 14 days with SW_IN VPD Tair
......393
Look up table with window size of 7 days with SW_IN
..26
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..232
Look up table with window size of 28 days with SW_IN VPD Tair
21
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............517
Look up table with window size of 14 days with SW_IN VPD Tair
........546
Look up table with window size of 7 days with SW_IN
...13
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...201
Look up table with window size of 28 days with SW_IN VPD Tair
.89
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
22
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................424
Look up table with window size of 14 days with SW_IN VPD Tair
............735
Look up table with window size of 7 days with SW_IN
.....30
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....477
Look up table with window size of 28 days with SW_IN VPD Tair
6
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................375
Look up table with window size of 14 days with SW_IN VPD Tair
................506
Look up table with window size of 7 days with SW_IN
...........28
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........293
Look up table with window size of 28 days with SW_IN VPD Tair
........577
Look up table with window size of 35 days with SW_IN VPD Tair
..211
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................434
Look up table with window size of 14 days with SW_IN VPD Tair
...................338
Look up table with window size of 7 days with SW_IN
................197
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............374
Look up table with window size of 28 days with SW_IN VPD Tair
..........598
Look up table with window size of 35 days with SW_IN VPD Tair
....446
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................570
Look up table with window size of 14 days with SW_IN VPD Tair
.......................578
Look up table with window size of 7 days with SW_IN
.................3
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................582
Look up table with window size of 28 days with SW_IN VPD Tair
...........661
Look up table with window size of 35 days with SW_IN VPD Tair
....309
Look up table with window size of 42 days with SW_IN VPD Tair
.74
Look up table with window size of 49 days with SW_IN VPD Tair
.41
Look up table with window size of 56 days with SW_IN VPD Tair
24
Look up table with window size of 63 days with SW_IN VPD Tair
20
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
12
Look up table with window size of 35 days with SW_IN
5
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
62
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.146
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..205
Look up table with window size of 14 days with SW_IN VPD Tair
15
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..228
Look up table with window size of 14 days with SW_IN VPD Tair
39
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...306
Look up table with window size of 14 days with SW_IN VPD Tair
16
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...334
Look up table with window size of 14 days with SW_IN VPD Tair
29
Look up table with window size of 7 days with SW_IN
21
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....457
Look up table with window size of 14 days with SW_IN VPD Tair
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....487
Look up table with window size of 14 days with SW_IN VPD Tair
71
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......406
Look up table with window size of 14 days with SW_IN VPD Tair
..217
Look up table with window size of 7 days with SW_IN
40
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
11
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........621
Look up table with window size of 14 days with SW_IN VPD Tair
.189
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........477
Look up table with window size of 14 days with SW_IN VPD Tair
....467
Look up table with window size of 7 days with SW_IN
23
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........520
Look up table with window size of 14 days with SW_IN VPD Tair
......630
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............573
Look up table with window size of 14 days with SW_IN VPD Tair
........437
Look up table with window size of 7 days with SW_IN
...47
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...198
Look up table with window size of 28 days with SW_IN VPD Tair
.81
Look up table with window size of 35 days with SW_IN VPD Tair
48
Look up table with window size of 42 days with SW_IN VPD Tair
15
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................483
Look up table with window size of 14 days with SW_IN VPD Tair
...........392
Look up table with window size of 7 days with SW_IN
........102
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......422
Look up table with window size of 28 days with SW_IN VPD Tair
..262
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................546
Look up table with window size of 14 days with SW_IN VPD Tair
..............553
Look up table with window size of 7 days with SW_IN
.........41
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........1
Look up table with window size of 21 days with SW_IN VPD Tair
........581
Look up table with window size of 28 days with SW_IN VPD Tair
..163
Look up table with window size of 35 days with SW_IN VPD Tair
.85
Look up table with window size of 42 days with SW_IN VPD Tair
29
Look up table with window size of 49 days with SW_IN VPD Tair
8
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................331
Look up table with window size of 14 days with SW_IN VPD Tair
....................471
Look up table with window size of 7 days with SW_IN
................182
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............384
Look up table with window size of 28 days with SW_IN VPD Tair
..........473
Look up table with window size of 35 days with SW_IN VPD Tair
.....247
Look up table with window size of 42 days with SW_IN VPD Tair
...209
Look up table with window size of 49 days with SW_IN VPD Tair
.92
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
16
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................429
Look up table with window size of 14 days with SW_IN VPD Tair
........................382
Look up table with window size of 7 days with SW_IN
....................127
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................502
Look up table with window size of 28 days with SW_IN VPD Tair
..............830
Look up table with window size of 35 days with SW_IN VPD Tair
......319
Look up table with window size of 42 days with SW_IN VPD Tair
..242
Look up table with window size of 49 days with SW_IN VPD Tair
19
Look up table with window size of 56 days with SW_IN VPD Tair
13
Look up table with window size of 63 days with SW_IN VPD Tair
10
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
9
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..215
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..240
Look up table with window size of 14 days with SW_IN VPD Tair
21
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...317
Look up table with window size of 14 days with SW_IN VPD Tair
71
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....445
Look up table with window size of 14 days with SW_IN VPD Tair
20
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....334
Look up table with window size of 14 days with SW_IN VPD Tair
..200
Look up table with window size of 7 days with SW_IN
26
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......550
Look up table with window size of 14 days with SW_IN VPD Tair
.66
Look up table with window size of 7 days with SW_IN
47
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
6
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........471
Look up table with window size of 14 days with SW_IN VPD Tair
...305
Look up table with window size of 7 days with SW_IN
18
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
16
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........621
Look up table with window size of 14 days with SW_IN VPD Tair
...338
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
10
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........454
Look up table with window size of 14 days with SW_IN VPD Tair
.......445
Look up table with window size of 7 days with SW_IN
..25
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..1
Mean diurnal course with window size of 2 days: .
..7
Look up table with window size of 21 days with SW_IN VPD Tair
..198
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
14
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
7
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............578
Look up table with window size of 14 days with SW_IN VPD Tair
........439
Look up table with window size of 7 days with SW_IN
...10
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...330
Look up table with window size of 28 days with SW_IN VPD Tair
39
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................510
Look up table with window size of 14 days with SW_IN VPD Tair
...........422
Look up table with window size of 7 days with SW_IN
.......37
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......412
Look up table with window size of 28 days with SW_IN VPD Tair
..196
Look up table with window size of 35 days with SW_IN VPD Tair
76
Look up table with window size of 42 days with SW_IN VPD Tair
18
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................494
Look up table with window size of 14 days with SW_IN VPD Tair
...............568
Look up table with window size of 7 days with SW_IN
.........32
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........443
Look up table with window size of 28 days with SW_IN VPD Tair
....349
Look up table with window size of 35 days with SW_IN VPD Tair
.75
Look up table with window size of 42 days with SW_IN VPD Tair
17
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
26
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................428
Look up table with window size of 14 days with SW_IN VPD Tair
...................405
Look up table with window size of 7 days with SW_IN
...............42
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............0
Mean diurnal course with window size of 2 days: .
...............1
Look up table with window size of 21 days with SW_IN VPD Tair
...............835
Look up table with window size of 28 days with SW_IN VPD Tair
......410
Look up table with window size of 35 days with SW_IN VPD Tair
..157
Look up table with window size of 42 days with SW_IN VPD Tair
.33
Look up table with window size of 49 days with SW_IN VPD Tair
16
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
11
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
15
Look up table with window size of 28 days with SW_IN
31
Look up table with window size of 35 days with SW_IN
10
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................404
Look up table with window size of 14 days with SW_IN VPD Tair
........................525
Look up table with window size of 7 days with SW_IN
...................25
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................486
Look up table with window size of 28 days with SW_IN VPD Tair
..............654
Look up table with window size of 35 days with SW_IN VPD Tair
.......500
Look up table with window size of 42 days with SW_IN VPD Tair
..64
Look up table with window size of 49 days with SW_IN VPD Tair
..63
Look up table with window size of 56 days with SW_IN VPD Tair
.26
Look up table with window size of 63 days with SW_IN VPD Tair
.85
Look up table with window size of 70 days with SW_IN VPD Tair
16
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
22
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'PA' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
6
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
36
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..237
Look up table with window size of 14 days with SW_IN VPD Tair
22
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...317
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...379
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....431
Look up table with window size of 14 days with SW_IN VPD Tair
37
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....546
Look up table with window size of 14 days with SW_IN VPD Tair
16
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......445
Look up table with window size of 14 days with SW_IN VPD Tair
..206
Look up table with window size of 7 days with SW_IN
24
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........440
Look up table with window size of 14 days with SW_IN VPD Tair
...319
Look up table with window size of 7 days with SW_IN
31
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
13
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........553
Look up table with window size of 14 days with SW_IN VPD Tair
....408
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........477
Look up table with window size of 14 days with SW_IN VPD Tair
......586
Look up table with window size of 7 days with SW_IN
.41
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
49
Look up table with window size of 28 days with SW_IN VPD Tair
10
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............536
Look up table with window size of 14 days with SW_IN VPD Tair
........467
Look up table with window size of 7 days with SW_IN
...24
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...364
Look up table with window size of 28 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................455
Look up table with window size of 14 days with SW_IN VPD Tair
............682
Look up table with window size of 7 days with SW_IN
.....22
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....4
Look up table with window size of 21 days with SW_IN VPD Tair
.....382
Look up table with window size of 28 days with SW_IN VPD Tair
.55
Look up table with window size of 35 days with SW_IN VPD Tair
18
Look up table with window size of 42 days with SW_IN VPD Tair
14
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
13
Look up table with window size of 28 days with SW_IN
13
Look up table with window size of 35 days with SW_IN
4
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................555
Look up table with window size of 14 days with SW_IN VPD Tair
..............471
Look up table with window size of 7 days with SW_IN
.........26
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........667
Look up table with window size of 28 days with SW_IN VPD Tair
..264
Look up table with window size of 35 days with SW_IN VPD Tair
12
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
5
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................379
Look up table with window size of 14 days with SW_IN VPD Tair
....................171
Look up table with window size of 7 days with SW_IN
..................130
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................604
Look up table with window size of 28 days with SW_IN VPD Tair
...........776
Look up table with window size of 35 days with SW_IN VPD Tair
...225
Look up table with window size of 42 days with SW_IN VPD Tair
.101
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
10
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................289
Look up table with window size of 14 days with SW_IN VPD Tair
.........................423
Look up table with window size of 7 days with SW_IN
.....................215
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................1
Look up table with window size of 21 days with SW_IN VPD Tair
...................374
Look up table with window size of 28 days with SW_IN VPD Tair
...............321
Look up table with window size of 35 days with SW_IN VPD Tair
............418
Look up table with window size of 42 days with SW_IN VPD Tair
........349
Look up table with window size of 49 days with SW_IN VPD Tair
....311
Look up table with window size of 56 days with SW_IN VPD Tair
.172
Look up table with window size of 63 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
35
Look up table with window size of 14 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...304
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...343
Look up table with window size of 14 days with SW_IN VPD Tair
38
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....460
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....531
Look up table with window size of 14 days with SW_IN VPD Tair
28
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......374
Look up table with window size of 14 days with SW_IN VPD Tair
...242
Look up table with window size of 7 days with SW_IN
55
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........595
Look up table with window size of 14 days with SW_IN VPD Tair
..188
Look up table with window size of 7 days with SW_IN
28
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........294
Look up table with window size of 14 days with SW_IN VPD Tair
......313
Look up table with window size of 7 days with SW_IN
...302
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
27
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
9
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
18
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........510
Look up table with window size of 14 days with SW_IN VPD Tair
......417
Look up table with window size of 7 days with SW_IN
..26
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..75
Look up table with window size of 28 days with SW_IN VPD Tair
.4
Look up table with window size of 35 days with SW_IN VPD Tair
.35
Look up table with window size of 42 days with SW_IN VPD Tair
.13
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
80
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............575
Look up table with window size of 14 days with SW_IN VPD Tair
........626
Look up table with window size of 7 days with SW_IN
.6
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.185
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................536
Look up table with window size of 14 days with SW_IN VPD Tair
...........526
Look up table with window size of 7 days with SW_IN
......9
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......528
Look up table with window size of 28 days with SW_IN VPD Tair
42
Look up table with window size of 35 days with SW_IN VPD Tair
18
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................411
Look up table with window size of 14 days with SW_IN VPD Tair
...............721
Look up table with window size of 7 days with SW_IN
........35
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........444
Look up table with window size of 28 days with SW_IN VPD Tair
...133
Look up table with window size of 35 days with SW_IN VPD Tair
..77
Look up table with window size of 42 days with SW_IN VPD Tair
.110
Look up table with window size of 49 days with SW_IN VPD Tair
56
Look up table with window size of 56 days with SW_IN VPD Tair
17
Look up table with window size of 63 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................412
Look up table with window size of 14 days with SW_IN VPD Tair
...................534
Look up table with window size of 7 days with SW_IN
..............90
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............3
Mean diurnal course with window size of 2 days: .
.............5
Look up table with window size of 21 days with SW_IN VPD Tair
.............549
Look up table with window size of 28 days with SW_IN VPD Tair
........437
Look up table with window size of 35 days with SW_IN VPD Tair
...101
Look up table with window size of 42 days with SW_IN VPD Tair
..45
Look up table with window size of 49 days with SW_IN VPD Tair
..9
Look up table with window size of 56 days with SW_IN VPD Tair
..13
Look up table with window size of 63 days with SW_IN VPD Tair
..0
Look up table with window size of 70 days with SW_IN VPD Tair
..0
Look up table with window size of 14 days with SW_IN
..40
Look up table with window size of 21 days with SW_IN
.97
Look up table with window size of 28 days with SW_IN
64
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
4
Mean diurnal course with window size of 21 days: .
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................474
Look up table with window size of 14 days with SW_IN VPD Tair
........................665
Look up table with window size of 7 days with SW_IN
.................33
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................2
Mean diurnal course with window size of 2 days: .
.................1
Look up table with window size of 21 days with SW_IN VPD Tair
.................560
Look up table with window size of 28 days with SW_IN VPD Tair
...........707
Look up table with window size of 35 days with SW_IN VPD Tair
....350
Look up table with window size of 42 days with SW_IN VPD Tair
51
Look up table with window size of 49 days with SW_IN VPD Tair
10
Look up table with window size of 56 days with SW_IN VPD Tair
10
Look up table with window size of 63 days with SW_IN VPD Tair
9
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
39
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
50
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.115
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.178
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..243
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
15
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...255
Look up table with window size of 14 days with SW_IN VPD Tair
65
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...339
Look up table with window size of 14 days with SW_IN VPD Tair
48
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....388
Look up table with window size of 14 days with SW_IN VPD Tair
48
Look up table with window size of 7 days with SW_IN
30
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....502
Look up table with window size of 14 days with SW_IN VPD Tair
58
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......481
Look up table with window size of 14 days with SW_IN VPD Tair
.151
Look up table with window size of 7 days with SW_IN
44
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........356
Look up table with window size of 14 days with SW_IN VPD Tair
....397
Look up table with window size of 7 days with SW_IN
48
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........517
Look up table with window size of 14 days with SW_IN VPD Tair
....340
Look up table with window size of 7 days with SW_IN
.50
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
61
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........484
Look up table with window size of 14 days with SW_IN VPD Tair
......572
Look up table with window size of 7 days with SW_IN
.22
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
52
Look up table with window size of 28 days with SW_IN VPD Tair
34
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............527
Look up table with window size of 14 days with SW_IN VPD Tair
........521
Look up table with window size of 7 days with SW_IN
...38
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...221
Look up table with window size of 28 days with SW_IN VPD Tair
61
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
15
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................461
Look up table with window size of 14 days with SW_IN VPD Tair
............505
Look up table with window size of 7 days with SW_IN
.......22
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......556
Look up table with window size of 28 days with SW_IN VPD Tair
.127
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................398
Look up table with window size of 14 days with SW_IN VPD Tair
................559
Look up table with window size of 7 days with SW_IN
..........50
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........421
Look up table with window size of 28 days with SW_IN VPD Tair
.....360
Look up table with window size of 35 days with SW_IN VPD Tair
..95
Look up table with window size of 42 days with SW_IN VPD Tair
.26
Look up table with window size of 49 days with SW_IN VPD Tair
22
Look up table with window size of 56 days with SW_IN VPD Tair
28
Look up table with window size of 63 days with SW_IN VPD Tair
9
Look up table with window size of 70 days with SW_IN VPD Tair
10
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
19
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
6
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................414
Look up table with window size of 14 days with SW_IN VPD Tair
...................535
Look up table with window size of 7 days with SW_IN
..............85
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............8
Look up table with window size of 21 days with SW_IN VPD Tair
.............547
Look up table with window size of 28 days with SW_IN VPD Tair
........449
Look up table with window size of 35 days with SW_IN VPD Tair
...104
Look up table with window size of 42 days with SW_IN VPD Tair
..45
Look up table with window size of 49 days with SW_IN VPD Tair
..9
Look up table with window size of 56 days with SW_IN VPD Tair
..12
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.39
Look up table with window size of 21 days with SW_IN
.96
Look up table with window size of 28 days with SW_IN
57
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
4
Mean diurnal course with window size of 21 days: .
1
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................497
Look up table with window size of 14 days with SW_IN VPD Tair
.......................676
Look up table with window size of 7 days with SW_IN
.................40
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................1
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................421
Look up table with window size of 28 days with SW_IN VPD Tair
............391
Look up table with window size of 35 days with SW_IN VPD Tair
........403
Look up table with window size of 42 days with SW_IN VPD Tair
....255
Look up table with window size of 49 days with SW_IN VPD Tair
.90
Look up table with window size of 56 days with SW_IN VPD Tair
.30
Look up table with window size of 63 days with SW_IN VPD Tair
23
Look up table with window size of 70 days with SW_IN VPD Tair
10
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
12
Look up table with window size of 42 days with SW_IN
16
Look up table with window size of 49 days with SW_IN
11
Finished gap filling of 'PA' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
7
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
63
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.79
Look up table with window size of 14 days with SW_IN VPD Tair
23
Look up table with window size of 7 days with SW_IN
20
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.145
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...233
Look up table with window size of 14 days with SW_IN VPD Tair
32
Look up table with window size of 7 days with SW_IN
57
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...367
Look up table with window size of 14 days with SW_IN VPD Tair
21
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....376
Look up table with window size of 14 days with SW_IN VPD Tair
55
Look up table with window size of 7 days with SW_IN
35
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....469
Look up table with window size of 14 days with SW_IN VPD Tair
93
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......349
Look up table with window size of 14 days with SW_IN VPD Tair
...238
Look up table with window size of 7 days with SW_IN
78
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
10
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........429
Look up table with window size of 14 days with SW_IN VPD Tair
...374
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........387
Look up table with window size of 14 days with SW_IN VPD Tair
.....489
Look up table with window size of 7 days with SW_IN
80
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
14
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........499
Look up table with window size of 14 days with SW_IN VPD Tair
......500
Look up table with window size of 7 days with SW_IN
.84
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
64
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
12
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............416
Look up table with window size of 14 days with SW_IN VPD Tair
.........529
Look up table with window size of 7 days with SW_IN
....49
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....1
Look up table with window size of 21 days with SW_IN VPD Tair
....328
Look up table with window size of 28 days with SW_IN VPD Tair
64
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................485
Look up table with window size of 14 days with SW_IN VPD Tair
...........623
Look up table with window size of 7 days with SW_IN
.....51
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....2
Mean diurnal course with window size of 2 days: .
.....2
Look up table with window size of 21 days with SW_IN VPD Tair
.....394
Look up table with window size of 28 days with SW_IN VPD Tair
.87
Look up table with window size of 35 days with SW_IN VPD Tair
18
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................422
Look up table with window size of 14 days with SW_IN VPD Tair
...............391
Look up table with window size of 7 days with SW_IN
...........104
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........2
Look up table with window size of 21 days with SW_IN VPD Tair
..........550
Look up table with window size of 28 days with SW_IN VPD Tair
.....369
Look up table with window size of 35 days with SW_IN VPD Tair
.137
Look up table with window size of 42 days with SW_IN VPD Tair
24
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................418
Look up table with window size of 14 days with SW_IN VPD Tair
...................579
Look up table with window size of 7 days with SW_IN
..............125
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............1
Mean diurnal course with window size of 2 days: .
............7
Look up table with window size of 21 days with SW_IN VPD Tair
............349
Look up table with window size of 28 days with SW_IN VPD Tair
.........296
Look up table with window size of 35 days with SW_IN VPD Tair
......335
Look up table with window size of 42 days with SW_IN VPD Tair
..171
Look up table with window size of 49 days with SW_IN VPD Tair
.40
Look up table with window size of 56 days with SW_IN VPD Tair
28
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
10
Look up table with window size of 28 days with SW_IN
10
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
15
Look up table with window size of 49 days with SW_IN
12
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................594
Look up table with window size of 14 days with SW_IN VPD Tair
......................572
Look up table with window size of 7 days with SW_IN
.................27
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................600
Look up table with window size of 28 days with SW_IN VPD Tair
..........461
Look up table with window size of 35 days with SW_IN VPD Tair
......496
Look up table with window size of 42 days with SW_IN VPD Tair
.105
Look up table with window size of 49 days with SW_IN VPD Tair
12
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
9
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.178
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..189
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
29
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...265
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
35
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...353
Look up table with window size of 14 days with SW_IN VPD Tair
33
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....440
Look up table with window size of 14 days with SW_IN VPD Tair
27
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....422
Look up table with window size of 14 days with SW_IN VPD Tair
.90
Look up table with window size of 7 days with SW_IN
43
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......432
Look up table with window size of 14 days with SW_IN VPD Tair
..122
Look up table with window size of 7 days with SW_IN
.80
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
19
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........496
Look up table with window size of 14 days with SW_IN VPD Tair
...307
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........468
Look up table with window size of 14 days with SW_IN VPD Tair
.....413
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
69
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........391
Look up table with window size of 14 days with SW_IN VPD Tair
.......509
Look up table with window size of 7 days with SW_IN
..25
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..125
Look up table with window size of 28 days with SW_IN VPD Tair
.55
Look up table with window size of 35 days with SW_IN VPD Tair
16
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
23
Look up table with window size of 21 days with SW_IN
14
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............533
Look up table with window size of 14 days with SW_IN VPD Tair
........662
Look up table with window size of 7 days with SW_IN
..5
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.192
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................490
Look up table with window size of 14 days with SW_IN VPD Tair
...........477
Look up table with window size of 7 days with SW_IN
.......60
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......370
Look up table with window size of 28 days with SW_IN VPD Tair
..34
Look up table with window size of 35 days with SW_IN VPD Tair
..66
Look up table with window size of 42 days with SW_IN VPD Tair
.24
Look up table with window size of 49 days with SW_IN VPD Tair
.3
Look up table with window size of 56 days with SW_IN VPD Tair
.0
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.107
Look up table with window size of 21 days with SW_IN
45
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................503
Look up table with window size of 14 days with SW_IN VPD Tair
...............556
Look up table with window size of 7 days with SW_IN
.........14
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........584
Look up table with window size of 28 days with SW_IN VPD Tair
...211
Look up table with window size of 35 days with SW_IN VPD Tair
.55
Look up table with window size of 42 days with SW_IN VPD Tair
64
Look up table with window size of 49 days with SW_IN VPD Tair
16
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................562
Look up table with window size of 14 days with SW_IN VPD Tair
..................374
Look up table with window size of 7 days with SW_IN
..............49
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............1
Mean diurnal course with window size of 2 days: .
..............1
Look up table with window size of 21 days with SW_IN VPD Tair
..............805
Look up table with window size of 28 days with SW_IN VPD Tair
......407
Look up table with window size of 35 days with SW_IN VPD Tair
..55
Look up table with window size of 42 days with SW_IN VPD Tair
.134
Look up table with window size of 49 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................374
Look up table with window size of 14 days with SW_IN VPD Tair
.........................687
Look up table with window size of 7 days with SW_IN
..................74
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................646
Look up table with window size of 28 days with SW_IN VPD Tair
..........475
Look up table with window size of 35 days with SW_IN VPD Tair
......303
Look up table with window size of 42 days with SW_IN VPD Tair
...223
Look up table with window size of 49 days with SW_IN VPD Tair
51
Look up table with window size of 56 days with SW_IN VPD Tair
31
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
0
Mean diurnal course with window size of 28 days: .
0
Mean diurnal course with window size of 35 days: .
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.146
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...295
Look up table with window size of 14 days with SW_IN VPD Tair
23
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...388
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....468
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....441
Look up table with window size of 14 days with SW_IN VPD Tair
.102
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......535
Look up table with window size of 14 days with SW_IN VPD Tair
.134
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........446
Look up table with window size of 14 days with SW_IN VPD Tair
...351
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........425
Look up table with window size of 14 days with SW_IN VPD Tair
.....520
Look up table with window size of 7 days with SW_IN
18
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
10
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........524
Look up table with window size of 14 days with SW_IN VPD Tair
......537
Look up table with window size of 7 days with SW_IN
.28
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
7
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
61
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............582
Look up table with window size of 14 days with SW_IN VPD Tair
........541
Look up table with window size of 7 days with SW_IN
..4
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..243
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
17
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................364
Look up table with window size of 14 days with SW_IN VPD Tair
.............497
Look up table with window size of 7 days with SW_IN
........31
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......1
Look up table with window size of 21 days with SW_IN VPD Tair
.......589
Look up table with window size of 28 days with SW_IN VPD Tair
.18
Look up table with window size of 35 days with SW_IN VPD Tair
.30
Look up table with window size of 42 days with SW_IN VPD Tair
.4
Look up table with window size of 49 days with SW_IN VPD Tair
.46
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
73
Look up table with window size of 21 days with SW_IN
19
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................465
Look up table with window size of 14 days with SW_IN VPD Tair
...............683
Look up table with window size of 7 days with SW_IN
........38
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........5
Look up table with window size of 21 days with SW_IN VPD Tair
........533
Look up table with window size of 28 days with SW_IN VPD Tair
..266
Look up table with window size of 35 days with SW_IN VPD Tair
17
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................510
Look up table with window size of 14 days with SW_IN VPD Tair
..................579
Look up table with window size of 7 days with SW_IN
.............16
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............553
Look up table with window size of 28 days with SW_IN VPD Tair
.......632
Look up table with window size of 35 days with SW_IN VPD Tair
.76
Look up table with window size of 42 days with SW_IN VPD Tair
31
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................481
Look up table with window size of 14 days with SW_IN VPD Tair
.......................626
Look up table with window size of 7 days with SW_IN
.................9
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................582
Look up table with window size of 28 days with SW_IN VPD Tair
...........505
Look up table with window size of 35 days with SW_IN VPD Tair
......312
Look up table with window size of 42 days with SW_IN VPD Tair
...146
Look up table with window size of 49 days with SW_IN VPD Tair
..154
Look up table with window size of 56 days with SW_IN VPD Tair
52
Look up table with window size of 63 days with SW_IN VPD Tair
5
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..179
Look up table with window size of 14 days with SW_IN VPD Tair
41
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..239
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...313
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...337
Look up table with window size of 14 days with SW_IN VPD Tair
49
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....468
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....536
Look up table with window size of 14 days with SW_IN VPD Tair
22
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......559
Look up table with window size of 14 days with SW_IN VPD Tair
.98
Look up table with window size of 7 days with SW_IN
19
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........475
Look up table with window size of 14 days with SW_IN VPD Tair
...299
Look up table with window size of 7 days with SW_IN
33
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........461
Look up table with window size of 14 days with SW_IN VPD Tair
.....431
Look up table with window size of 7 days with SW_IN
46
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
34
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........576
Look up table with window size of 14 days with SW_IN VPD Tair
.....523
Look up table with window size of 7 days with SW_IN
42
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
24
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............431
Look up table with window size of 14 days with SW_IN VPD Tair
.........439
Look up table with window size of 7 days with SW_IN
.....119
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....2
Mean diurnal course with window size of 2 days: .
....3
Look up table with window size of 21 days with SW_IN VPD Tair
....261
Look up table with window size of 28 days with SW_IN VPD Tair
.136
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................513
Look up table with window size of 14 days with SW_IN VPD Tair
...........526
Look up table with window size of 7 days with SW_IN
......5
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......555
Look up table with window size of 28 days with SW_IN VPD Tair
47
Look up table with window size of 35 days with SW_IN VPD Tair
27
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................540
Look up table with window size of 14 days with SW_IN VPD Tair
..............580
Look up table with window size of 7 days with SW_IN
........19
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........500
Look up table with window size of 28 days with SW_IN VPD Tair
...279
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
9
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
16
Look up table with window size of 28 days with SW_IN
30
Look up table with window size of 35 days with SW_IN
4
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................440
Look up table with window size of 14 days with SW_IN VPD Tair
...................596
Look up table with window size of 7 days with SW_IN
.............31
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............478
Look up table with window size of 28 days with SW_IN VPD Tair
........421
Look up table with window size of 35 days with SW_IN VPD Tair
....152
Look up table with window size of 42 days with SW_IN VPD Tair
..135
Look up table with window size of 49 days with SW_IN VPD Tair
.106
Look up table with window size of 56 days with SW_IN VPD Tair
36
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................407
Look up table with window size of 14 days with SW_IN VPD Tair
........................441
Look up table with window size of 7 days with SW_IN
....................104
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................461
Look up table with window size of 28 days with SW_IN VPD Tair
..............356
Look up table with window size of 35 days with SW_IN VPD Tair
...........391
Look up table with window size of 42 days with SW_IN VPD Tair
.......432
Look up table with window size of 49 days with SW_IN VPD Tair
..188
Look up table with window size of 56 days with SW_IN VPD Tair
65
Look up table with window size of 63 days with SW_IN VPD Tair
10
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
13
Look up table with window size of 21 days with SW_IN
8
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
48
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..159
Look up table with window size of 14 days with SW_IN VPD Tair
52
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..239
Look up table with window size of 14 days with SW_IN VPD Tair
28
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...321
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...238
Look up table with window size of 14 days with SW_IN VPD Tair
.96
Look up table with window size of 7 days with SW_IN
52
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....387
Look up table with window size of 14 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....416
Look up table with window size of 14 days with SW_IN VPD Tair
.137
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......460
Look up table with window size of 14 days with SW_IN VPD Tair
..191
Look up table with window size of 7 days with SW_IN
23
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........420
Look up table with window size of 14 days with SW_IN VPD Tair
...251
Look up table with window size of 7 days with SW_IN
.105
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
21
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........585
Look up table with window size of 14 days with SW_IN VPD Tair
...349
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 21 days with SW_IN VPD Tair
21
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........441
Look up table with window size of 14 days with SW_IN VPD Tair
.......486
Look up table with window size of 7 days with SW_IN
..18
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..6
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..185
Look up table with window size of 28 days with SW_IN VPD Tair
26
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............579
Look up table with window size of 14 days with SW_IN VPD Tair
........590
Look up table with window size of 7 days with SW_IN
..0
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..2
Look up table with window size of 21 days with SW_IN VPD Tair
..224
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................552
Look up table with window size of 14 days with SW_IN VPD Tair
...........467
Look up table with window size of 7 days with SW_IN
......17
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......449
Look up table with window size of 28 days with SW_IN VPD Tair
.154
Look up table with window size of 35 days with SW_IN VPD Tair
22
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................509
Look up table with window size of 14 days with SW_IN VPD Tair
..............518
Look up table with window size of 7 days with SW_IN
.........49
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........442
Look up table with window size of 28 days with SW_IN VPD Tair
....217
Look up table with window size of 35 days with SW_IN VPD Tair
..243
Look up table with window size of 42 days with SW_IN VPD Tair
20
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................470
Look up table with window size of 14 days with SW_IN VPD Tair
...................488
Look up table with window size of 7 days with SW_IN
..............92
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............421
Look up table with window size of 28 days with SW_IN VPD Tair
.........443
Look up table with window size of 35 days with SW_IN VPD Tair
....233
Look up table with window size of 42 days with SW_IN VPD Tair
..57
Look up table with window size of 49 days with SW_IN VPD Tair
..8
Look up table with window size of 56 days with SW_IN VPD Tair
.7
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.26
Look up table with window size of 21 days with SW_IN
.120
Look up table with window size of 28 days with SW_IN
40
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................496
Look up table with window size of 14 days with SW_IN VPD Tair
.......................641
Look up table with window size of 7 days with SW_IN
.................31
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................1
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................630
Look up table with window size of 28 days with SW_IN VPD Tair
..........490
Look up table with window size of 35 days with SW_IN VPD Tair
.....399
Look up table with window size of 42 days with SW_IN VPD Tair
.64
Look up table with window size of 49 days with SW_IN VPD Tair
.126
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
23
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
25
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
56
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.83
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
39
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.143
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..260
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...267
Look up table with window size of 14 days with SW_IN VPD Tair
55
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...378
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....392
Look up table with window size of 14 days with SW_IN VPD Tair
73
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....545
Look up table with window size of 14 days with SW_IN VPD Tair
12
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......463
Look up table with window size of 14 days with SW_IN VPD Tair
..210
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........482
Look up table with window size of 14 days with SW_IN VPD Tair
...289
Look up table with window size of 7 days with SW_IN
24
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
12
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........447
Look up table with window size of 14 days with SW_IN VPD Tair
.....420
Look up table with window size of 7 days with SW_IN
.11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
79
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........440
Look up table with window size of 14 days with SW_IN VPD Tair
.......587
Look up table with window size of 7 days with SW_IN
.100
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
31
Look up table with window size of 28 days with SW_IN VPD Tair
8
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............551
Look up table with window size of 14 days with SW_IN VPD Tair
........596
Look up table with window size of 7 days with SW_IN
..109
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.98
Look up table with window size of 28 days with SW_IN VPD Tair
43
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................331
Look up table with window size of 14 days with SW_IN VPD Tair
.............773
Look up table with window size of 7 days with SW_IN
.....133
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....365
Look up table with window size of 28 days with SW_IN VPD Tair
31
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
36
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................322
Look up table with window size of 14 days with SW_IN VPD Tair
................505
Look up table with window size of 7 days with SW_IN
...........235
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........629
Look up table with window size of 28 days with SW_IN VPD Tair
...175
Look up table with window size of 35 days with SW_IN VPD Tair
.85
Look up table with window size of 42 days with SW_IN VPD Tair
33
Look up table with window size of 49 days with SW_IN VPD Tair
17
Look up table with window size of 56 days with SW_IN VPD Tair
6
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................551
Look up table with window size of 14 days with SW_IN VPD Tair
..................492
Look up table with window size of 7 days with SW_IN
.............15
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............627
Look up table with window size of 28 days with SW_IN VPD Tair
.......615
Look up table with window size of 35 days with SW_IN VPD Tair
.29
Look up table with window size of 42 days with SW_IN VPD Tair
19
Look up table with window size of 49 days with SW_IN VPD Tair
40
Look up table with window size of 56 days with SW_IN VPD Tair
14
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................613
Look up table with window size of 14 days with SW_IN VPD Tair
......................490
Look up table with window size of 7 days with SW_IN
.................16
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................530
Look up table with window size of 28 days with SW_IN VPD Tair
............609
Look up table with window size of 35 days with SW_IN VPD Tair
......453
Look up table with window size of 42 days with SW_IN VPD Tair
.54
Look up table with window size of 49 days with SW_IN VPD Tair
.28
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
84
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
79
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.149
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..209
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..260
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...307
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...320
Look up table with window size of 14 days with SW_IN VPD Tair
68
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....360
Look up table with window size of 14 days with SW_IN VPD Tair
.74
Look up table with window size of 7 days with SW_IN
33
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....525
Look up table with window size of 14 days with SW_IN VPD Tair
36
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......337
Look up table with window size of 14 days with SW_IN VPD Tair
...217
Look up table with window size of 7 days with SW_IN
.82
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 21 days with SW_IN VPD Tair
12
Look up table with window size of 28 days with SW_IN VPD Tair
17
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........471
Look up table with window size of 14 days with SW_IN VPD Tair
...208
Look up table with window size of 7 days with SW_IN
.124
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........528
Look up table with window size of 14 days with SW_IN VPD Tair
....359
Look up table with window size of 7 days with SW_IN
31
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
51
Look up table with window size of 28 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........583
Look up table with window size of 14 days with SW_IN VPD Tair
.....538
Look up table with window size of 7 days with SW_IN
30
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
13
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............448
Look up table with window size of 14 days with SW_IN VPD Tair
.........428
Look up table with window size of 7 days with SW_IN
.....66
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....343
Look up table with window size of 28 days with SW_IN VPD Tair
.57
Look up table with window size of 35 days with SW_IN VPD Tair
20
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
15
Look up table with window size of 21 days with SW_IN
10
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................483
Look up table with window size of 14 days with SW_IN VPD Tair
...........617
Look up table with window size of 7 days with SW_IN
.....15
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....297
Look up table with window size of 28 days with SW_IN VPD Tair
..224
Look up table with window size of 35 days with SW_IN VPD Tair
14
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
19
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
6
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................472
Look up table with window size of 14 days with SW_IN VPD Tair
...............567
Look up table with window size of 7 days with SW_IN
.........18
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........542
Look up table with window size of 28 days with SW_IN VPD Tair
....197
Look up table with window size of 35 days with SW_IN VPD Tair
..43
Look up table with window size of 42 days with SW_IN VPD Tair
.55
Look up table with window size of 49 days with SW_IN VPD Tair
.0
Look up table with window size of 56 days with SW_IN VPD Tair
.0
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.72
Look up table with window size of 21 days with SW_IN
40
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................367
Look up table with window size of 14 days with SW_IN VPD Tair
....................548
Look up table with window size of 7 days with SW_IN
..............103
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............508
Look up table with window size of 28 days with SW_IN VPD Tair
........644
Look up table with window size of 35 days with SW_IN VPD Tair
..173
Look up table with window size of 42 days with SW_IN VPD Tair
41
Look up table with window size of 49 days with SW_IN VPD Tair
20
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................504
Look up table with window size of 14 days with SW_IN VPD Tair
.......................503
Look up table with window size of 7 days with SW_IN
..................22
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................1
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................678
Look up table with window size of 28 days with SW_IN VPD Tair
...........707
Look up table with window size of 35 days with SW_IN VPD Tair
....424
Look up table with window size of 42 days with SW_IN VPD Tair
16
Look up table with window size of 49 days with SW_IN VPD Tair
10
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
79
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.91
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.148
Look up table with window size of 14 days with SW_IN VPD Tair
33
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...299
Look up table with window size of 14 days with SW_IN VPD Tair
23
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...348
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
39
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....285
Look up table with window size of 14 days with SW_IN VPD Tair
.163
Look up table with window size of 7 days with SW_IN
20
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....447
Look up table with window size of 14 days with SW_IN VPD Tair
.105
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......462
Look up table with window size of 14 days with SW_IN VPD Tair
..199
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
10
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........464
Look up table with window size of 14 days with SW_IN VPD Tair
...343
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........520
Look up table with window size of 14 days with SW_IN VPD Tair
....380
Look up table with window size of 7 days with SW_IN
39
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
19
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
13
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........445
Look up table with window size of 14 days with SW_IN VPD Tair
.......540
Look up table with window size of 7 days with SW_IN
.1
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.2
Mean diurnal course with window size of 2 days: .
.2
Look up table with window size of 21 days with SW_IN VPD Tair
.164
Look up table with window size of 28 days with SW_IN VPD Tair
10
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............522
Look up table with window size of 14 days with SW_IN VPD Tair
........633
Look up table with window size of 7 days with SW_IN
..7
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..235
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................356
Look up table with window size of 14 days with SW_IN VPD Tair
.............653
Look up table with window size of 7 days with SW_IN
......21
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......515
Look up table with window size of 28 days with SW_IN VPD Tair
.121
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................420
Look up table with window size of 14 days with SW_IN VPD Tair
...............681
Look up table with window size of 7 days with SW_IN
.........7
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........503
Look up table with window size of 28 days with SW_IN VPD Tair
...372
Look up table with window size of 35 days with SW_IN VPD Tair
16
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................544
Look up table with window size of 14 days with SW_IN VPD Tair
..................643
Look up table with window size of 7 days with SW_IN
............4
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............503
Look up table with window size of 28 days with SW_IN VPD Tair
.......438
Look up table with window size of 35 days with SW_IN VPD Tair
..181
Look up table with window size of 42 days with SW_IN VPD Tair
66
Look up table with window size of 49 days with SW_IN VPD Tair
15
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
7
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................474
Look up table with window size of 14 days with SW_IN VPD Tair
........................623
Look up table with window size of 7 days with SW_IN
.................0
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................347
Look up table with window size of 28 days with SW_IN VPD Tair
..............526
Look up table with window size of 35 days with SW_IN VPD Tair
.........484
Look up table with window size of 42 days with SW_IN VPD Tair
....250
Look up table with window size of 49 days with SW_IN VPD Tair
.127
Look up table with window size of 56 days with SW_IN VPD Tair
39
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'PA' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
16
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
18
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.174
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..179
Look up table with window size of 14 days with SW_IN VPD Tair
41
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...240
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
77
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...366
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....413
Look up table with window size of 14 days with SW_IN VPD Tair
48
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....486
Look up table with window size of 14 days with SW_IN VPD Tair
65
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......476
Look up table with window size of 14 days with SW_IN VPD Tair
..197
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........495
Look up table with window size of 14 days with SW_IN VPD Tair
...160
Look up table with window size of 7 days with SW_IN
.78
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
32
Look up table with window size of 28 days with SW_IN VPD Tair
31
Look up table with window size of 35 days with SW_IN VPD Tair
14
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........617
Look up table with window size of 14 days with SW_IN VPD Tair
...266
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
61
Look up table with window size of 28 days with SW_IN VPD Tair
15
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
12
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........498
Look up table with window size of 14 days with SW_IN VPD Tair
......458
Look up table with window size of 7 days with SW_IN
..39
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.133
Look up table with window size of 28 days with SW_IN VPD Tair
24
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
8
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............525
Look up table with window size of 14 days with SW_IN VPD Tair
........519
Look up table with window size of 7 days with SW_IN
...38
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...268
Look up table with window size of 28 days with SW_IN VPD Tair
39
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................592
Look up table with window size of 14 days with SW_IN VPD Tair
..........595
Look up table with window size of 7 days with SW_IN
....33
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....415
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
11
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................440
Look up table with window size of 14 days with SW_IN VPD Tair
...............571
Look up table with window size of 7 days with SW_IN
.........40
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........667
Look up table with window size of 28 days with SW_IN VPD Tair
..127
Look up table with window size of 35 days with SW_IN VPD Tair
.44
Look up table with window size of 42 days with SW_IN VPD Tair
.28
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
58
Look up table with window size of 21 days with SW_IN
24
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................591
Look up table with window size of 14 days with SW_IN VPD Tair
..................482
Look up table with window size of 7 days with SW_IN
.............20
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............705
Look up table with window size of 28 days with SW_IN VPD Tair
......552
Look up table with window size of 35 days with SW_IN VPD Tair
34
Look up table with window size of 42 days with SW_IN VPD Tair
17
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................379
Look up table with window size of 14 days with SW_IN VPD Tair
.........................525
Look up table with window size of 7 days with SW_IN
...................23
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................800
Look up table with window size of 28 days with SW_IN VPD Tair
...........638
Look up table with window size of 35 days with SW_IN VPD Tair
.....497
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
30
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Look up table with window size of 14 days with SW_IN VPD Tair
28
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.178
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..216
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...354
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....317
Look up table with window size of 14 days with SW_IN VPD Tair
.141
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....244
Look up table with window size of 14 days with SW_IN VPD Tair
...160
Look up table with window size of 7 days with SW_IN
.142
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......556
Look up table with window size of 14 days with SW_IN VPD Tair
.71
Look up table with window size of 7 days with SW_IN
38
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
9
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........572
Look up table with window size of 14 days with SW_IN VPD Tair
..198
Look up table with window size of 7 days with SW_IN
34
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........460
Look up table with window size of 14 days with SW_IN VPD Tair
.....406
Look up table with window size of 7 days with SW_IN
.82
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
21
Look up table with window size of 28 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........453
Look up table with window size of 14 days with SW_IN VPD Tair
.......465
Look up table with window size of 7 days with SW_IN
..23
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..180
Look up table with window size of 28 days with SW_IN VPD Tair
24
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
20
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............236
Look up table with window size of 14 days with SW_IN VPD Tair
...........343
Look up table with window size of 7 days with SW_IN
........278
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....1
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....392
Look up table with window size of 28 days with SW_IN VPD Tair
.129
Look up table with window size of 35 days with SW_IN VPD Tair
18
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................368
Look up table with window size of 14 days with SW_IN VPD Tair
.............569
Look up table with window size of 7 days with SW_IN
.......146
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....479
Look up table with window size of 28 days with SW_IN VPD Tair
.108
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................372
Look up table with window size of 14 days with SW_IN VPD Tair
................747
Look up table with window size of 7 days with SW_IN
........9
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........587
Look up table with window size of 28 days with SW_IN VPD Tair
..276
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................473
Look up table with window size of 14 days with SW_IN VPD Tair
...................601
Look up table with window size of 7 days with SW_IN
.............44
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............594
Look up table with window size of 28 days with SW_IN VPD Tair
......564
Look up table with window size of 35 days with SW_IN VPD Tair
.93
Look up table with window size of 42 days with SW_IN VPD Tair
28
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................443
Look up table with window size of 14 days with SW_IN VPD Tair
........................502
Look up table with window size of 7 days with SW_IN
...................94
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................336
Look up table with window size of 28 days with SW_IN VPD Tair
...............421
Look up table with window size of 35 days with SW_IN VPD Tair
..........291
Look up table with window size of 42 days with SW_IN VPD Tair
.......257
Look up table with window size of 49 days with SW_IN VPD Tair
.....348
Look up table with window size of 56 days with SW_IN VPD Tair
.121
Look up table with window size of 63 days with SW_IN VPD Tair
33
Look up table with window size of 70 days with SW_IN VPD Tair
9
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
9
Look up table with window size of 35 days with SW_IN
3
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
1
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
23
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
61
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
79
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.97
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.169
Look up table with window size of 14 days with SW_IN VPD Tair
12
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..213
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..265
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...220
Look up table with window size of 14 days with SW_IN VPD Tair
.83
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...378
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....360
Look up table with window size of 14 days with SW_IN VPD Tair
.71
Look up table with window size of 7 days with SW_IN
32
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....457
Look up table with window size of 14 days with SW_IN VPD Tair
.69
Look up table with window size of 7 days with SW_IN
32
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......592
Look up table with window size of 14 days with SW_IN VPD Tair
76
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........493
Look up table with window size of 14 days with SW_IN VPD Tair
...253
Look up table with window size of 7 days with SW_IN
59
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........372
Look up table with window size of 14 days with SW_IN VPD Tair
......435
Look up table with window size of 7 days with SW_IN
.63
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.98
Look up table with window size of 28 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........542
Look up table with window size of 14 days with SW_IN VPD Tair
......531
Look up table with window size of 7 days with SW_IN
30
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
58
Look up table with window size of 28 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............497
Look up table with window size of 14 days with SW_IN VPD Tair
.........392
Look up table with window size of 7 days with SW_IN
.....109
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....1
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....341
Look up table with window size of 28 days with SW_IN VPD Tair
14
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
26
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................484
Look up table with window size of 14 days with SW_IN VPD Tair
...........610
Look up table with window size of 7 days with SW_IN
.....29
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....2
Look up table with window size of 21 days with SW_IN VPD Tair
.....511
Look up table with window size of 28 days with SW_IN VPD Tair
32
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................478
Look up table with window size of 14 days with SW_IN VPD Tair
...............742
Look up table with window size of 7 days with SW_IN
.......12
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......1
Look up table with window size of 21 days with SW_IN VPD Tair
.......450
Look up table with window size of 28 days with SW_IN VPD Tair
...204
Look up table with window size of 35 days with SW_IN VPD Tair
.88
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................448
Look up table with window size of 14 days with SW_IN VPD Tair
...................477
Look up table with window size of 7 days with SW_IN
..............128
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............829
Look up table with window size of 28 days with SW_IN VPD Tair
.....496
Look up table with window size of 35 days with SW_IN VPD Tair
27
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................554
Look up table with window size of 14 days with SW_IN VPD Tair
.......................633
Look up table with window size of 7 days with SW_IN
................27
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................645
Look up table with window size of 28 days with SW_IN VPD Tair
..........517
Look up table with window size of 35 days with SW_IN VPD Tair
.....221
Look up table with window size of 42 days with SW_IN VPD Tair
..251
Look up table with window size of 49 days with SW_IN VPD Tair
8
Look up table with window size of 56 days with SW_IN VPD Tair
8
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.118
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.148
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.178
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..259
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...321
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...356
Look up table with window size of 14 days with SW_IN VPD Tair
27
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....409
Look up table with window size of 14 days with SW_IN VPD Tair
59
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....492
Look up table with window size of 14 days with SW_IN VPD Tair
69
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......407
Look up table with window size of 14 days with SW_IN VPD Tair
..252
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........504
Look up table with window size of 14 days with SW_IN VPD Tair
...258
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 21 days with SW_IN VPD Tair
33
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........407
Look up table with window size of 14 days with SW_IN VPD Tair
.....379
Look up table with window size of 7 days with SW_IN
.110
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
62
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........524
Look up table with window size of 14 days with SW_IN VPD Tair
......526
Look up table with window size of 7 days with SW_IN
.17
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.94
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............547
Look up table with window size of 14 days with SW_IN VPD Tair
........581
Look up table with window size of 7 days with SW_IN
..75
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.192
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................590
Look up table with window size of 14 days with SW_IN VPD Tair
..........569
Look up table with window size of 7 days with SW_IN
.....33
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....443
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
11
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................556
Look up table with window size of 14 days with SW_IN VPD Tair
..............584
Look up table with window size of 7 days with SW_IN
........19
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........638
Look up table with window size of 28 days with SW_IN VPD Tair
..86
Look up table with window size of 35 days with SW_IN VPD Tair
.33
Look up table with window size of 42 days with SW_IN VPD Tair
88
Look up table with window size of 49 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................431
Look up table with window size of 14 days with SW_IN VPD Tair
...................613
Look up table with window size of 7 days with SW_IN
.............14
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............774
Look up table with window size of 28 days with SW_IN VPD Tair
.....371
Look up table with window size of 35 days with SW_IN VPD Tair
..115
Look up table with window size of 42 days with SW_IN VPD Tair
66
Look up table with window size of 49 days with SW_IN VPD Tair
21
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................521
Look up table with window size of 14 days with SW_IN VPD Tair
.......................472
Look up table with window size of 7 days with SW_IN
..................32
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................603
Look up table with window size of 28 days with SW_IN VPD Tair
............575
Look up table with window size of 35 days with SW_IN VPD Tair
......368
Look up table with window size of 42 days with SW_IN VPD Tair
...149
Look up table with window size of 49 days with SW_IN VPD Tair
.54
Look up table with window size of 56 days with SW_IN VPD Tair
.35
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
9
Look up table with window size of 14 days with SW_IN
19
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
19
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
10
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.180
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..191
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
24
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...290
Look up table with window size of 14 days with SW_IN VPD Tair
28
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...384
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....364
Look up table with window size of 14 days with SW_IN VPD Tair
.63
Look up table with window size of 7 days with SW_IN
39
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....299
Look up table with window size of 14 days with SW_IN VPD Tair
..246
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......421
Look up table with window size of 14 days with SW_IN VPD Tair
..227
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
15
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........519
Look up table with window size of 14 days with SW_IN VPD Tair
..256
Look up table with window size of 7 days with SW_IN
34
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........452
Look up table with window size of 14 days with SW_IN VPD Tair
.....456
Look up table with window size of 7 days with SW_IN
55
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........428
Look up table with window size of 14 days with SW_IN VPD Tair
.......496
Look up table with window size of 7 days with SW_IN
..100
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.139
Look up table with window size of 28 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............522
Look up table with window size of 14 days with SW_IN VPD Tair
........685
Look up table with window size of 7 days with SW_IN
.4
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.3
Mean diurnal course with window size of 2 days: .
.3
Look up table with window size of 21 days with SW_IN VPD Tair
.161
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................588
Look up table with window size of 14 days with SW_IN VPD Tair
..........650
Look up table with window size of 7 days with SW_IN
....10
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....402
Look up table with window size of 28 days with SW_IN VPD Tair
25
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................407
Look up table with window size of 14 days with SW_IN VPD Tair
................683
Look up table with window size of 7 days with SW_IN
.........16
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........1
Look up table with window size of 21 days with SW_IN VPD Tair
.........471
Look up table with window size of 28 days with SW_IN VPD Tair
....337
Look up table with window size of 35 days with SW_IN VPD Tair
67
Look up table with window size of 42 days with SW_IN VPD Tair
24
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................581
Look up table with window size of 14 days with SW_IN VPD Tair
..................693
Look up table with window size of 7 days with SW_IN
...........1
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........594
Look up table with window size of 28 days with SW_IN VPD Tair
.....487
Look up table with window size of 35 days with SW_IN VPD Tair
34
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................537
Look up table with window size of 14 days with SW_IN VPD Tair
.......................529
Look up table with window size of 7 days with SW_IN
..................22
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................394
Look up table with window size of 28 days with SW_IN VPD Tair
.............515
Look up table with window size of 35 days with SW_IN VPD Tair
........423
Look up table with window size of 42 days with SW_IN VPD Tair
....313
Look up table with window size of 49 days with SW_IN VPD Tair
.141
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.146
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.161
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..200
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
13
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..256
Look up table with window size of 14 days with SW_IN VPD Tair
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...282
Look up table with window size of 14 days with SW_IN VPD Tair
27
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...296
Look up table with window size of 14 days with SW_IN VPD Tair
64
Look up table with window size of 7 days with SW_IN
28
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....382
Look up table with window size of 14 days with SW_IN VPD Tair
75
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....486
Look up table with window size of 14 days with SW_IN VPD Tair
73
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......574
Look up table with window size of 14 days with SW_IN VPD Tair
.94
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........572
Look up table with window size of 14 days with SW_IN VPD Tair
..225
Look up table with window size of 7 days with SW_IN
14
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........399
Look up table with window size of 14 days with SW_IN VPD Tair
.....210
Look up table with window size of 7 days with SW_IN
...121
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..152
Look up table with window size of 28 days with SW_IN VPD Tair
70
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
12
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........552
Look up table with window size of 14 days with SW_IN VPD Tair
......481
Look up table with window size of 7 days with SW_IN
.16
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.4
Look up table with window size of 21 days with SW_IN VPD Tair
.69
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
16
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
19
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............454
Look up table with window size of 14 days with SW_IN VPD Tair
.........481
Look up table with window size of 7 days with SW_IN
....22
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....301
Look up table with window size of 28 days with SW_IN VPD Tair
.30
Look up table with window size of 35 days with SW_IN VPD Tair
.21
Look up table with window size of 42 days with SW_IN VPD Tair
48
Look up table with window size of 49 days with SW_IN VPD Tair
28
Look up table with window size of 56 days with SW_IN VPD Tair
10
Look up table with window size of 63 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................530
Look up table with window size of 14 days with SW_IN VPD Tair
...........529
Look up table with window size of 7 days with SW_IN
......10
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......433
Look up table with window size of 28 days with SW_IN VPD Tair
.105
Look up table with window size of 35 days with SW_IN VPD Tair
31
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
20
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................364
Look up table with window size of 14 days with SW_IN VPD Tair
................558
Look up table with window size of 7 days with SW_IN
..........95
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........616
Look up table with window size of 28 days with SW_IN VPD Tair
...288
Look up table with window size of 35 days with SW_IN VPD Tair
80
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................500
Look up table with window size of 14 days with SW_IN VPD Tair
...................626
Look up table with window size of 7 days with SW_IN
............30
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............540
Look up table with window size of 28 days with SW_IN VPD Tair
.......483
Look up table with window size of 35 days with SW_IN VPD Tair
..85
Look up table with window size of 42 days with SW_IN VPD Tair
.49
Look up table with window size of 49 days with SW_IN VPD Tair
35
Look up table with window size of 56 days with SW_IN VPD Tair
23
Look up table with window size of 63 days with SW_IN VPD Tair
17
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
17
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................366
Look up table with window size of 14 days with SW_IN VPD Tair
.........................333
Look up table with window size of 7 days with SW_IN
.....................150
Mean diurnal course with window size of 0 days: .
....................0
Mean diurnal course with window size of 1 days: .
....................0
Mean diurnal course with window size of 2 days: .
....................2
Look up table with window size of 21 days with SW_IN VPD Tair
....................467
Look up table with window size of 28 days with SW_IN VPD Tair
...............558
Look up table with window size of 35 days with SW_IN VPD Tair
..........303
Look up table with window size of 42 days with SW_IN VPD Tair
.......185
Look up table with window size of 49 days with SW_IN VPD Tair
.....221
Look up table with window size of 56 days with SW_IN VPD Tair
..241
Look up table with window size of 63 days with SW_IN VPD Tair
52
Look up table with window size of 70 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.119
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.131
Look up table with window size of 14 days with SW_IN VPD Tair
18
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.123
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
59
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..210
Look up table with window size of 14 days with SW_IN VPD Tair
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..255
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...383
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....393
Look up table with window size of 14 days with SW_IN VPD Tair
61
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....541
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......569
Look up table with window size of 14 days with SW_IN VPD Tair
.104
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........589
Look up table with window size of 14 days with SW_IN VPD Tair
..193
Look up table with window size of 7 days with SW_IN
21
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........333
Look up table with window size of 14 days with SW_IN VPD Tair
......440
Look up table with window size of 7 days with SW_IN
..118
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
81
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........432
Look up table with window size of 14 days with SW_IN VPD Tair
.......497
Look up table with window size of 7 days with SW_IN
..132
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.98
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............556
Look up table with window size of 14 days with SW_IN VPD Tair
........566
Look up table with window size of 7 days with SW_IN
..2
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..4
Look up table with window size of 21 days with SW_IN VPD Tair
..187
Look up table with window size of 28 days with SW_IN VPD Tair
75
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................504
Look up table with window size of 14 days with SW_IN VPD Tair
...........598
Look up table with window size of 7 days with SW_IN
.....3
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....1
Look up table with window size of 21 days with SW_IN VPD Tair
.....500
Look up table with window size of 28 days with SW_IN VPD Tair
33
Look up table with window size of 35 days with SW_IN VPD Tair
26
Look up table with window size of 42 days with SW_IN VPD Tair
11
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................524
Look up table with window size of 14 days with SW_IN VPD Tair
..............609
Look up table with window size of 7 days with SW_IN
........5
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........620
Look up table with window size of 28 days with SW_IN VPD Tair
..243
Look up table with window size of 35 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................485
Look up table with window size of 14 days with SW_IN VPD Tair
...................717
Look up table with window size of 7 days with SW_IN
............13
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........1
Look up table with window size of 21 days with SW_IN VPD Tair
...........645
Look up table with window size of 28 days with SW_IN VPD Tair
.....269
Look up table with window size of 35 days with SW_IN VPD Tair
..133
Look up table with window size of 42 days with SW_IN VPD Tair
.112
Look up table with window size of 49 days with SW_IN VPD Tair
24
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................586
Look up table with window size of 14 days with SW_IN VPD Tair
......................623
Look up table with window size of 7 days with SW_IN
................6
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................1
Look up table with window size of 21 days with SW_IN VPD Tair
................741
Look up table with window size of 28 days with SW_IN VPD Tair
.........513
Look up table with window size of 35 days with SW_IN VPD Tair
....357
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
5
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
18
Look up table with window size of 42 days with SW_IN
13
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
21
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
42
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.86
Look up table with window size of 14 days with SW_IN VPD Tair
14
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..190
Look up table with window size of 14 days with SW_IN VPD Tair
31
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..169
Look up table with window size of 14 days with SW_IN VPD Tair
79
Look up table with window size of 7 days with SW_IN
19
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...319
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...339
Look up table with window size of 14 days with SW_IN VPD Tair
40
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....426
Look up table with window size of 14 days with SW_IN VPD Tair
41
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....412
Look up table with window size of 14 days with SW_IN VPD Tair
.105
Look up table with window size of 7 days with SW_IN
44
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......451
Look up table with window size of 14 days with SW_IN VPD Tair
..211
Look up table with window size of 7 days with SW_IN
13
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........431
Look up table with window size of 14 days with SW_IN VPD Tair
...229
Look up table with window size of 7 days with SW_IN
.82
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
66
Look up table with window size of 28 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........569
Look up table with window size of 14 days with SW_IN VPD Tair
....379
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
16
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........500
Look up table with window size of 14 days with SW_IN VPD Tair
......525
Look up table with window size of 7 days with SW_IN
.13
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.113
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............484
Look up table with window size of 14 days with SW_IN VPD Tair
.........584
Look up table with window size of 7 days with SW_IN
...59
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..242
Look up table with window size of 28 days with SW_IN VPD Tair
28
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................479
Look up table with window size of 14 days with SW_IN VPD Tair
...........736
Look up table with window size of 7 days with SW_IN
....8
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....427
Look up table with window size of 28 days with SW_IN VPD Tair
12
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................397
Look up table with window size of 14 days with SW_IN VPD Tair
................568
Look up table with window size of 7 days with SW_IN
..........59
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........645
Look up table with window size of 28 days with SW_IN VPD Tair
...284
Look up table with window size of 35 days with SW_IN VPD Tair
27
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
9
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
5
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................411
Look up table with window size of 14 days with SW_IN VPD Tair
...................595
Look up table with window size of 7 days with SW_IN
.............21
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............503
Look up table with window size of 28 days with SW_IN VPD Tair
........799
Look up table with window size of 35 days with SW_IN VPD Tair
32
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
9
Look up table with window size of 56 days with SW_IN VPD Tair
11
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
5
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................359
Look up table with window size of 14 days with SW_IN VPD Tair
.........................571
Look up table with window size of 7 days with SW_IN
...................110
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................660
Look up table with window size of 28 days with SW_IN VPD Tair
...........778
Look up table with window size of 35 days with SW_IN VPD Tair
....350
Look up table with window size of 42 days with SW_IN VPD Tair
28
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
14
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.120
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.149
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.172
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..250
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...126
Look up table with window size of 14 days with SW_IN VPD Tair
.68
Look up table with window size of 7 days with SW_IN
.126
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...271
Look up table with window size of 14 days with SW_IN VPD Tair
.111
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....430
Look up table with window size of 14 days with SW_IN VPD Tair
32
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....540
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
11
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......454
Look up table with window size of 14 days with SW_IN VPD Tair
..83
Look up table with window size of 7 days with SW_IN
.137
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........499
Look up table with window size of 14 days with SW_IN VPD Tair
...304
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........481
Look up table with window size of 14 days with SW_IN VPD Tair
....444
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
45
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........604
Look up table with window size of 14 days with SW_IN VPD Tair
.....429
Look up table with window size of 7 days with SW_IN
.30
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.80
Look up table with window size of 28 days with SW_IN VPD Tair
13
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............527
Look up table with window size of 14 days with SW_IN VPD Tair
........630
Look up table with window size of 7 days with SW_IN
..43
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.177
Look up table with window size of 28 days with SW_IN VPD Tair
18
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................530
Look up table with window size of 14 days with SW_IN VPD Tair
...........627
Look up table with window size of 7 days with SW_IN
.....10
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....445
Look up table with window size of 28 days with SW_IN VPD Tair
51
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................532
Look up table with window size of 14 days with SW_IN VPD Tair
..............464
Look up table with window size of 7 days with SW_IN
..........21
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........677
Look up table with window size of 28 days with SW_IN VPD Tair
...213
Look up table with window size of 35 days with SW_IN VPD Tair
.46
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
13
Look up table with window size of 21 days with SW_IN
14
Look up table with window size of 28 days with SW_IN
14
Look up table with window size of 35 days with SW_IN
10
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................529
Look up table with window size of 14 days with SW_IN VPD Tair
..................535
Look up table with window size of 7 days with SW_IN
.............3
Mean diurnal course with window size of 0 days: .
.............1
Mean diurnal course with window size of 1 days: .
.............5
Mean diurnal course with window size of 2 days: .
.............5
Look up table with window size of 21 days with SW_IN VPD Tair
.............585
Look up table with window size of 28 days with SW_IN VPD Tair
.......436
Look up table with window size of 35 days with SW_IN VPD Tair
...167
Look up table with window size of 42 days with SW_IN VPD Tair
.112
Look up table with window size of 49 days with SW_IN VPD Tair
8
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
5
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
11
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................416
Look up table with window size of 14 days with SW_IN VPD Tair
........................384
Look up table with window size of 7 days with SW_IN
....................200
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................337
Look up table with window size of 28 days with SW_IN VPD Tair
...............617
Look up table with window size of 35 days with SW_IN VPD Tair
.........467
Look up table with window size of 42 days with SW_IN VPD Tair
....244
Look up table with window size of 49 days with SW_IN VPD Tair
..124
Look up table with window size of 56 days with SW_IN VPD Tair
67
Look up table with window size of 63 days with SW_IN VPD Tair
14
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
61
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.112
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.174
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..205
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...305
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
14
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...381
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....430
Look up table with window size of 14 days with SW_IN VPD Tair
34
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....517
Look up table with window size of 14 days with SW_IN VPD Tair
41
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......450
Look up table with window size of 14 days with SW_IN VPD Tair
..195
Look up table with window size of 7 days with SW_IN
29
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........577
Look up table with window size of 14 days with SW_IN VPD Tair
..227
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........534
Look up table with window size of 14 days with SW_IN VPD Tair
....383
Look up table with window size of 7 days with SW_IN
33
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
6
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........405
Look up table with window size of 14 days with SW_IN VPD Tair
.......571
Look up table with window size of 7 days with SW_IN
.62
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.115
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............455
Look up table with window size of 14 days with SW_IN VPD Tair
.........589
Look up table with window size of 7 days with SW_IN
...15
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...319
Look up table with window size of 28 days with SW_IN VPD Tair
12
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................424
Look up table with window size of 14 days with SW_IN VPD Tair
............649
Look up table with window size of 7 days with SW_IN
......120
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....400
Look up table with window size of 28 days with SW_IN VPD Tair
48
Look up table with window size of 35 days with SW_IN VPD Tair
16
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
9
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................335
Look up table with window size of 14 days with SW_IN VPD Tair
................481
Look up table with window size of 7 days with SW_IN
...........134
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........580
Look up table with window size of 28 days with SW_IN VPD Tair
....264
Look up table with window size of 35 days with SW_IN VPD Tair
..107
Look up table with window size of 42 days with SW_IN VPD Tair
.15
Look up table with window size of 49 days with SW_IN VPD Tair
21
Look up table with window size of 56 days with SW_IN VPD Tair
11
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
48
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................484
Look up table with window size of 14 days with SW_IN VPD Tair
...................587
Look up table with window size of 7 days with SW_IN
.............24
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............536
Look up table with window size of 28 days with SW_IN VPD Tair
.......363
Look up table with window size of 35 days with SW_IN VPD Tair
....131
Look up table with window size of 42 days with SW_IN VPD Tair
..133
Look up table with window size of 49 days with SW_IN VPD Tair
.103
Look up table with window size of 56 days with SW_IN VPD Tair
35
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................526
Look up table with window size of 14 days with SW_IN VPD Tair
.......................708
Look up table with window size of 7 days with SW_IN
................4
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................633
Look up table with window size of 28 days with SW_IN VPD Tair
..........585
Look up table with window size of 35 days with SW_IN VPD Tair
....343
Look up table with window size of 42 days with SW_IN VPD Tair
79
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
15
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
49
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
77
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.138
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.173
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...283
Look up table with window size of 14 days with SW_IN VPD Tair
38
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...151
Look up table with window size of 14 days with SW_IN VPD Tair
..76
Look up table with window size of 7 days with SW_IN
.161
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....350
Look up table with window size of 14 days with SW_IN VPD Tair
.48
Look up table with window size of 7 days with SW_IN
70
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....508
Look up table with window size of 14 days with SW_IN VPD Tair
24
Look up table with window size of 7 days with SW_IN
28
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......438
Look up table with window size of 14 days with SW_IN VPD Tair
..182
Look up table with window size of 7 days with SW_IN
48
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........278
Look up table with window size of 14 days with SW_IN VPD Tair
.....469
Look up table with window size of 7 days with SW_IN
48
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
16
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........246
Look up table with window size of 14 days with SW_IN VPD Tair
.......543
Look up table with window size of 7 days with SW_IN
.113
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
26
Look up table with window size of 28 days with SW_IN VPD Tair
32
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
6
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........562
Look up table with window size of 14 days with SW_IN VPD Tair
......511
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
79
Look up table with window size of 28 days with SW_IN VPD Tair
9
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............459
Look up table with window size of 14 days with SW_IN VPD Tair
.........518
Look up table with window size of 7 days with SW_IN
....12
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....395
Look up table with window size of 28 days with SW_IN VPD Tair
14
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................627
Look up table with window size of 14 days with SW_IN VPD Tair
..........451
Look up table with window size of 7 days with SW_IN
.....0
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....335
Look up table with window size of 28 days with SW_IN VPD Tair
..238
Look up table with window size of 35 days with SW_IN VPD Tair
18
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................488
Look up table with window size of 14 days with SW_IN VPD Tair
...............633
Look up table with window size of 7 days with SW_IN
........14
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........545
Look up table with window size of 28 days with SW_IN VPD Tair
...269
Look up table with window size of 35 days with SW_IN VPD Tair
29
Look up table with window size of 42 days with SW_IN VPD Tair
17
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................406
Look up table with window size of 14 days with SW_IN VPD Tair
...................637
Look up table with window size of 7 days with SW_IN
.............81
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............1
Mean diurnal course with window size of 2 days: .
............1
Look up table with window size of 21 days with SW_IN VPD Tair
............613
Look up table with window size of 28 days with SW_IN VPD Tair
......467
Look up table with window size of 35 days with SW_IN VPD Tair
.97
Look up table with window size of 42 days with SW_IN VPD Tair
.40
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
58
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................450
Look up table with window size of 14 days with SW_IN VPD Tair
........................354
Look up table with window size of 7 days with SW_IN
....................84
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................649
Look up table with window size of 28 days with SW_IN VPD Tair
.............992
Look up table with window size of 35 days with SW_IN VPD Tair
...221
Look up table with window size of 42 days with SW_IN VPD Tair
.70
Look up table with window size of 49 days with SW_IN VPD Tair
10
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
44
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
61
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
71
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.93
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.148
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.167
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..182
Look up table with window size of 14 days with SW_IN VPD Tair
39
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..254
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...318
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...355
Look up table with window size of 14 days with SW_IN VPD Tair
15
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....423
Look up table with window size of 14 days with SW_IN VPD Tair
36
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....380
Look up table with window size of 14 days with SW_IN VPD Tair
.176
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......411
Look up table with window size of 14 days with SW_IN VPD Tair
..142
Look up table with window size of 7 days with SW_IN
.71
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
45
Look up table with window size of 28 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........458
Look up table with window size of 14 days with SW_IN VPD Tair
...336
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........378
Look up table with window size of 14 days with SW_IN VPD Tair
.....357
Look up table with window size of 7 days with SW_IN
..135
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.52
Look up table with window size of 28 days with SW_IN VPD Tair
20
Look up table with window size of 35 days with SW_IN VPD Tair
20
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........341
Look up table with window size of 14 days with SW_IN VPD Tair
........561
Look up table with window size of 7 days with SW_IN
..106
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.151
Look up table with window size of 28 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............535
Look up table with window size of 14 days with SW_IN VPD Tair
........519
Look up table with window size of 7 days with SW_IN
...48
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..208
Look up table with window size of 28 days with SW_IN VPD Tair
18
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
54
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
10
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................361
Look up table with window size of 14 days with SW_IN VPD Tair
.............620
Look up table with window size of 7 days with SW_IN
......122
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....1
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....461
Look up table with window size of 28 days with SW_IN VPD Tair
.67
Look up table with window size of 35 days with SW_IN VPD Tair
42
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................307
Look up table with window size of 14 days with SW_IN VPD Tair
.................468
Look up table with window size of 7 days with SW_IN
............81
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........695
Look up table with window size of 28 days with SW_IN VPD Tair
....214
Look up table with window size of 35 days with SW_IN VPD Tair
..151
Look up table with window size of 42 days with SW_IN VPD Tair
17
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
56
Look up table with window size of 21 days with SW_IN
9
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................471
Look up table with window size of 14 days with SW_IN VPD Tair
...................700
Look up table with window size of 7 days with SW_IN
............21
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............525
Look up table with window size of 28 days with SW_IN VPD Tair
......591
Look up table with window size of 35 days with SW_IN VPD Tair
69
Look up table with window size of 42 days with SW_IN VPD Tair
19
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................504
Look up table with window size of 14 days with SW_IN VPD Tair
.......................682
Look up table with window size of 7 days with SW_IN
................2
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................426
Look up table with window size of 28 days with SW_IN VPD Tair
............594
Look up table with window size of 35 days with SW_IN VPD Tair
......459
Look up table with window size of 42 days with SW_IN VPD Tair
..134
Look up table with window size of 49 days with SW_IN VPD Tair
18
Look up table with window size of 56 days with SW_IN VPD Tair
17
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
10
Look up table with window size of 35 days with SW_IN
15
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
6
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
31
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.97
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..217
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..236
Look up table with window size of 14 days with SW_IN VPD Tair
23
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...299
Look up table with window size of 14 days with SW_IN VPD Tair
23
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...353
Look up table with window size of 14 days with SW_IN VPD Tair
30
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....410
Look up table with window size of 14 days with SW_IN VPD Tair
19
Look up table with window size of 7 days with SW_IN
38
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....518
Look up table with window size of 14 days with SW_IN VPD Tair
42
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......545
Look up table with window size of 14 days with SW_IN VPD Tair
.111
Look up table with window size of 7 days with SW_IN
20
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........442
Look up table with window size of 14 days with SW_IN VPD Tair
...348
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........443
Look up table with window size of 14 days with SW_IN VPD Tair
.....392
Look up table with window size of 7 days with SW_IN
.16
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.120
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........502
Look up table with window size of 14 days with SW_IN VPD Tair
......581
Look up table with window size of 7 days with SW_IN
44
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
35
Look up table with window size of 28 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............436
Look up table with window size of 14 days with SW_IN VPD Tair
.........398
Look up table with window size of 7 days with SW_IN
.....44
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....398
Look up table with window size of 28 days with SW_IN VPD Tair
.91
Look up table with window size of 35 days with SW_IN VPD Tair
27
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................525
Look up table with window size of 14 days with SW_IN VPD Tair
...........668
Look up table with window size of 7 days with SW_IN
....20
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....426
Look up table with window size of 28 days with SW_IN VPD Tair
26
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................494
Look up table with window size of 14 days with SW_IN VPD Tair
...............722
Look up table with window size of 7 days with SW_IN
.......61
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......634
Look up table with window size of 28 days with SW_IN VPD Tair
62
Look up table with window size of 35 days with SW_IN VPD Tair
29
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................380
Look up table with window size of 14 days with SW_IN VPD Tair
....................603
Look up table with window size of 7 days with SW_IN
..............142
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............616
Look up table with window size of 28 days with SW_IN VPD Tair
......540
Look up table with window size of 35 days with SW_IN VPD Tair
.95
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
19
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................352
Look up table with window size of 14 days with SW_IN VPD Tair
.........................522
Look up table with window size of 7 days with SW_IN
....................270
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................459
Look up table with window size of 28 days with SW_IN VPD Tair
............578
Look up table with window size of 35 days with SW_IN VPD Tair
......463
Look up table with window size of 42 days with SW_IN VPD Tair
..71
Look up table with window size of 49 days with SW_IN VPD Tair
.7
Look up table with window size of 56 days with SW_IN VPD Tair
.73
Look up table with window size of 63 days with SW_IN VPD Tair
12
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
54
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
13
Look up table with window size of 35 days with SW_IN
5
Finished gap filling of 'PA' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.97
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.140
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.174
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...317
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...372
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....453
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....333
Look up table with window size of 14 days with SW_IN VPD Tair
..217
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......538
Look up table with window size of 14 days with SW_IN VPD Tair
.130
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........495
Look up table with window size of 14 days with SW_IN VPD Tair
...260
Look up table with window size of 7 days with SW_IN
26
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
21
Look up table with window size of 28 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........523
Look up table with window size of 14 days with SW_IN VPD Tair
....394
Look up table with window size of 7 days with SW_IN
29
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
24
Look up table with window size of 28 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........460
Look up table with window size of 14 days with SW_IN VPD Tair
.......487
Look up table with window size of 7 days with SW_IN
..68
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.105
Look up table with window size of 28 days with SW_IN VPD Tair
44
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............313
Look up table with window size of 14 days with SW_IN VPD Tair
..........694
Look up table with window size of 7 days with SW_IN
...56
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...280
Look up table with window size of 28 days with SW_IN VPD Tair
47
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................525
Look up table with window size of 14 days with SW_IN VPD Tair
...........664
Look up table with window size of 7 days with SW_IN
....0
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....408
Look up table with window size of 28 days with SW_IN VPD Tair
72
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................573
Look up table with window size of 14 days with SW_IN VPD Tair
..............571
Look up table with window size of 7 days with SW_IN
........11
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........456
Look up table with window size of 28 days with SW_IN VPD Tair
...369
Look up table with window size of 35 days with SW_IN VPD Tair
21
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................355
Look up table with window size of 14 days with SW_IN VPD Tair
....................526
Look up table with window size of 7 days with SW_IN
...............100
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............249
Look up table with window size of 28 days with SW_IN VPD Tair
...........717
Look up table with window size of 35 days with SW_IN VPD Tair
....417
Look up table with window size of 42 days with SW_IN VPD Tair
22
Look up table with window size of 49 days with SW_IN VPD Tair
17
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................470
Look up table with window size of 14 days with SW_IN VPD Tair
........................714
Look up table with window size of 7 days with SW_IN
................0
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................454
Look up table with window size of 28 days with SW_IN VPD Tair
............584
Look up table with window size of 35 days with SW_IN VPD Tair
......459
Look up table with window size of 42 days with SW_IN VPD Tair
.89
Look up table with window size of 49 days with SW_IN VPD Tair
.34
Look up table with window size of 56 days with SW_IN VPD Tair
35
Look up table with window size of 63 days with SW_IN VPD Tair
40
Finished gap filling of 'PA' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
63
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.93
Look up table with window size of 14 days with SW_IN VPD Tair
5
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..252
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...321
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...210
Look up table with window size of 14 days with SW_IN VPD Tair
.112
Look up table with window size of 7 days with SW_IN
66
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....259
Look up table with window size of 14 days with SW_IN VPD Tair
..208
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....451
Look up table with window size of 14 days with SW_IN VPD Tair
.95
Look up table with window size of 7 days with SW_IN
15
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......520
Look up table with window size of 14 days with SW_IN VPD Tair
.146
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........538
Look up table with window size of 14 days with SW_IN VPD Tair
..257
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........395
Look up table with window size of 14 days with SW_IN VPD Tair
.....262
Look up table with window size of 7 days with SW_IN
...168
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.79
Look up table with window size of 28 days with SW_IN VPD Tair
47
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
12
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........189
Look up table with window size of 14 days with SW_IN VPD Tair
.........482
Look up table with window size of 7 days with SW_IN
....325
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.148
Look up table with window size of 28 days with SW_IN VPD Tair
20
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............468
Look up table with window size of 14 days with SW_IN VPD Tair
.........596
Look up table with window size of 7 days with SW_IN
...70
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..2
Look up table with window size of 21 days with SW_IN VPD Tair
..238
Look up table with window size of 28 days with SW_IN VPD Tair
13
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................412
Look up table with window size of 14 days with SW_IN VPD Tair
............411
Look up table with window size of 7 days with SW_IN
........141
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......323
Look up table with window size of 28 days with SW_IN VPD Tair
...226
Look up table with window size of 35 days with SW_IN VPD Tair
.163
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................413
Look up table with window size of 14 days with SW_IN VPD Tair
...............375
Look up table with window size of 7 days with SW_IN
............137
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........544
Look up table with window size of 28 days with SW_IN VPD Tair
.....412
Look up table with window size of 35 days with SW_IN VPD Tair
.117
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................515
Look up table with window size of 14 days with SW_IN VPD Tair
..................677
Look up table with window size of 7 days with SW_IN
............4
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............533
Look up table with window size of 28 days with SW_IN VPD Tair
......445
Look up table with window size of 35 days with SW_IN VPD Tair
..118
Look up table with window size of 42 days with SW_IN VPD Tair
.82
Look up table with window size of 49 days with SW_IN VPD Tair
24
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................456
Look up table with window size of 14 days with SW_IN VPD Tair
........................662
Look up table with window size of 7 days with SW_IN
.................101
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................662
Look up table with window size of 28 days with SW_IN VPD Tair
.........248
Look up table with window size of 35 days with SW_IN VPD Tair
.......524
Look up table with window size of 42 days with SW_IN VPD Tair
..117
Look up table with window size of 49 days with SW_IN VPD Tair
.34
Look up table with window size of 56 days with SW_IN VPD Tair
35
Look up table with window size of 63 days with SW_IN VPD Tair
40
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
79
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.149
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..249
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...301
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...378
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....427
Look up table with window size of 14 days with SW_IN VPD Tair
29
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....419
Look up table with window size of 14 days with SW_IN VPD Tair
.131
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
7
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......553
Look up table with window size of 14 days with SW_IN VPD Tair
.72
Look up table with window size of 7 days with SW_IN
38
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........489
Look up table with window size of 14 days with SW_IN VPD Tair
...271
Look up table with window size of 7 days with SW_IN
24
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........454
Look up table with window size of 14 days with SW_IN VPD Tair
.....337
Look up table with window size of 7 days with SW_IN
.30
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.131
Look up table with window size of 28 days with SW_IN VPD Tair
18
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........497
Look up table with window size of 14 days with SW_IN VPD Tair
......518
Look up table with window size of 7 days with SW_IN
.48
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.99
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............587
Look up table with window size of 14 days with SW_IN VPD Tair
........666
Look up table with window size of 7 days with SW_IN
.38
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.99
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................499
Look up table with window size of 14 days with SW_IN VPD Tair
...........514
Look up table with window size of 7 days with SW_IN
......26
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......312
Look up table with window size of 28 days with SW_IN VPD Tair
...253
Look up table with window size of 35 days with SW_IN VPD Tair
64
Look up table with window size of 42 days with SW_IN VPD Tair
7
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................415
Look up table with window size of 14 days with SW_IN VPD Tair
...............761
Look up table with window size of 7 days with SW_IN
........0
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........554
Look up table with window size of 28 days with SW_IN VPD Tair
..179
Look up table with window size of 35 days with SW_IN VPD Tair
29
Look up table with window size of 42 days with SW_IN VPD Tair
34
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
12
Look up table with window size of 28 days with SW_IN
17
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................497
Look up table with window size of 14 days with SW_IN VPD Tair
...................387
Look up table with window size of 7 days with SW_IN
...............12
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............0
Mean diurnal course with window size of 2 days: .
...............0
Look up table with window size of 21 days with SW_IN VPD Tair
...............647
Look up table with window size of 28 days with SW_IN VPD Tair
........565
Look up table with window size of 35 days with SW_IN VPD Tair
..201
Look up table with window size of 42 days with SW_IN VPD Tair
69
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................364
Look up table with window size of 14 days with SW_IN VPD Tair
.........................141
Look up table with window size of 7 days with SW_IN
.......................196
Mean diurnal course with window size of 0 days: .
.....................0
Mean diurnal course with window size of 1 days: .
.....................0
Mean diurnal course with window size of 2 days: .
.....................0
Look up table with window size of 21 days with SW_IN VPD Tair
.....................248
Look up table with window size of 28 days with SW_IN VPD Tair
...................457
Look up table with window size of 35 days with SW_IN VPD Tair
..............506
Look up table with window size of 42 days with SW_IN VPD Tair
.........282
Look up table with window size of 49 days with SW_IN VPD Tair
......163
Look up table with window size of 56 days with SW_IN VPD Tair
.....112
Look up table with window size of 63 days with SW_IN VPD Tair
....47
Look up table with window size of 70 days with SW_IN VPD Tair
...50
Look up table with window size of 14 days with SW_IN
...155
Look up table with window size of 21 days with SW_IN
.75
Look up table with window size of 28 days with SW_IN
44
Look up table with window size of 35 days with SW_IN
37
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'PA' in 12 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
6
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
23
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.120
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.180
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..165
Look up table with window size of 14 days with SW_IN VPD Tair
56
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..258
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...316
Look up table with window size of 14 days with SW_IN VPD Tair
56
Look up table with window size of 7 days with SW_IN
15
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....389
Look up table with window size of 14 days with SW_IN VPD Tair
21
Look up table with window size of 7 days with SW_IN
57
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....479
Look up table with window size of 14 days with SW_IN VPD Tair
83
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......522
Look up table with window size of 14 days with SW_IN VPD Tair
.144
Look up table with window size of 7 days with SW_IN
8
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........523
Look up table with window size of 14 days with SW_IN VPD Tair
..237
Look up table with window size of 7 days with SW_IN
34
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........389
Look up table with window size of 14 days with SW_IN VPD Tair
.....476
Look up table with window size of 7 days with SW_IN
.38
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
7
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
24
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
8
Look up table with window size of 21 days with SW_IN
24
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........516
Look up table with window size of 14 days with SW_IN VPD Tair
......634
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............420
Look up table with window size of 14 days with SW_IN VPD Tair
.........413
Look up table with window size of 7 days with SW_IN
.....244
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...269
Look up table with window size of 28 days with SW_IN VPD Tair
50
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................453
Look up table with window size of 14 days with SW_IN VPD Tair
............700
Look up table with window size of 7 days with SW_IN
.....48
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....391
Look up table with window size of 28 days with SW_IN VPD Tair
68
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
5
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................425
Look up table with window size of 14 days with SW_IN VPD Tair
...............618
Look up table with window size of 7 days with SW_IN
.........91
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........1
Mean diurnal course with window size of 2 days: .
........1
Look up table with window size of 21 days with SW_IN VPD Tair
........568
Look up table with window size of 28 days with SW_IN VPD Tair
...269
Look up table with window size of 35 days with SW_IN VPD Tair
17
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
12
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................456
Look up table with window size of 14 days with SW_IN VPD Tair
...................575
Look up table with window size of 7 days with SW_IN
.............64
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............673
Look up table with window size of 28 days with SW_IN VPD Tair
......321
Look up table with window size of 35 days with SW_IN VPD Tair
...206
Look up table with window size of 42 days with SW_IN VPD Tair
.88
Look up table with window size of 49 days with SW_IN VPD Tair
22
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................430
Look up table with window size of 14 days with SW_IN VPD Tair
........................520
Look up table with window size of 7 days with SW_IN
...................43
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................1
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................692
Look up table with window size of 28 days with SW_IN VPD Tair
...........666
Look up table with window size of 35 days with SW_IN VPD Tair
.....371
Look up table with window size of 42 days with SW_IN VPD Tair
.107
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
9
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
12
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
3
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
39
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.112
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.144
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..209
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..235
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
25
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...279
Look up table with window size of 14 days with SW_IN VPD Tair
37
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...381
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....393
Look up table with window size of 14 days with SW_IN VPD Tair
61
Look up table with window size of 7 days with SW_IN
14
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....545
Look up table with window size of 14 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......334
Look up table with window size of 14 days with SW_IN VPD Tair
...252
Look up table with window size of 7 days with SW_IN
42
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
45
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........410
Look up table with window size of 14 days with SW_IN VPD Tair
....247
Look up table with window size of 7 days with SW_IN
.147
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........590
Look up table with window size of 14 days with SW_IN VPD Tair
...356
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 21 days with SW_IN VPD Tair
10
Look up table with window size of 28 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........291
Look up table with window size of 14 days with SW_IN VPD Tair
........453
Look up table with window size of 7 days with SW_IN
....139
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..246
Look up table with window size of 28 days with SW_IN VPD Tair
29
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............491
Look up table with window size of 14 days with SW_IN VPD Tair
.........556
Look up table with window size of 7 days with SW_IN
...17
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...298
Look up table with window size of 28 days with SW_IN VPD Tair
12
Look up table with window size of 35 days with SW_IN VPD Tair
7
Look up table with window size of 42 days with SW_IN VPD Tair
14
Look up table with window size of 49 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................648
Look up table with window size of 14 days with SW_IN VPD Tair
..........560
Look up table with window size of 7 days with SW_IN
....4
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....384
Look up table with window size of 28 days with SW_IN VPD Tair
73
Look up table with window size of 35 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................588
Look up table with window size of 14 days with SW_IN VPD Tair
..............627
Look up table with window size of 7 days with SW_IN
.......12
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......674
Look up table with window size of 28 days with SW_IN VPD Tair
.88
Look up table with window size of 35 days with SW_IN VPD Tair
18
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................470
Look up table with window size of 14 days with SW_IN VPD Tair
...................592
Look up table with window size of 7 days with SW_IN
.............51
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............3
Look up table with window size of 21 days with SW_IN VPD Tair
............674
Look up table with window size of 28 days with SW_IN VPD Tair
......431
Look up table with window size of 35 days with SW_IN VPD Tair
.36
Look up table with window size of 42 days with SW_IN VPD Tair
.52
Look up table with window size of 49 days with SW_IN VPD Tair
68
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
16
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................465
Look up table with window size of 14 days with SW_IN VPD Tair
........................665
Look up table with window size of 7 days with SW_IN
.................18
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................616
Look up table with window size of 28 days with SW_IN VPD Tair
...........544
Look up table with window size of 35 days with SW_IN VPD Tair
.....378
Look up table with window size of 42 days with SW_IN VPD Tair
.117
Look up table with window size of 49 days with SW_IN VPD Tair
39
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
9
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
8
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
3
Look up table with window size of 63 days with SW_IN
4
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.180
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..206
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..253
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...281
Look up table with window size of 14 days with SW_IN VPD Tair
38
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...375
Look up table with window size of 14 days with SW_IN VPD Tair
13
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....275
Look up table with window size of 14 days with SW_IN VPD Tair
.171
Look up table with window size of 7 days with SW_IN
22
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....459
Look up table with window size of 14 days with SW_IN VPD Tair
.48
Look up table with window size of 7 days with SW_IN
51
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......568
Look up table with window size of 14 days with SW_IN VPD Tair
.100
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........587
Look up table with window size of 14 days with SW_IN VPD Tair
..185
Look up table with window size of 7 days with SW_IN
26
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........516
Look up table with window size of 14 days with SW_IN VPD Tair
....409
Look up table with window size of 7 days with SW_IN
26
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
21
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........493
Look up table with window size of 14 days with SW_IN VPD Tair
......506
Look up table with window size of 7 days with SW_IN
.43
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.84
Look up table with window size of 28 days with SW_IN VPD Tair
13
Look up table with window size of 35 days with SW_IN VPD Tair
22
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............337
Look up table with window size of 14 days with SW_IN VPD Tair
..........516
Look up table with window size of 7 days with SW_IN
.....153
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...347
Look up table with window size of 28 days with SW_IN VPD Tair
23
Look up table with window size of 35 days with SW_IN VPD Tair
8
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................433
Look up table with window size of 14 days with SW_IN VPD Tair
............610
Look up table with window size of 7 days with SW_IN
......67
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....436
Look up table with window size of 28 days with SW_IN VPD Tair
.58
Look up table with window size of 35 days with SW_IN VPD Tair
68
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................470
Look up table with window size of 14 days with SW_IN VPD Tair
...............574
Look up table with window size of 7 days with SW_IN
.........62
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........535
Look up table with window size of 28 days with SW_IN VPD Tair
...210
Look up table with window size of 35 days with SW_IN VPD Tair
.104
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
6
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
18
Look up table with window size of 21 days with SW_IN
8
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................360
Look up table with window size of 14 days with SW_IN VPD Tair
....................348
Look up table with window size of 7 days with SW_IN
................185
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............0
Mean diurnal course with window size of 2 days: .
...............1
Look up table with window size of 21 days with SW_IN VPD Tair
...............382
Look up table with window size of 28 days with SW_IN VPD Tair
...........514
Look up table with window size of 35 days with SW_IN VPD Tair
......329
Look up table with window size of 42 days with SW_IN VPD Tair
..184
Look up table with window size of 49 days with SW_IN VPD Tair
.37
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
14
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
26
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
5
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................486
Look up table with window size of 14 days with SW_IN VPD Tair
.......................471
Look up table with window size of 7 days with SW_IN
...................92
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................667
Look up table with window size of 28 days with SW_IN VPD Tair
...........593
Look up table with window size of 35 days with SW_IN VPD Tair
.....385
Look up table with window size of 42 days with SW_IN VPD Tair
.109
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
46
Look up table with window size of 63 days with SW_IN VPD Tair
9
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.140
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.130
Look up table with window size of 14 days with SW_IN VPD Tair
31
Look up table with window size of 7 days with SW_IN
21
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..166
Look up table with window size of 14 days with SW_IN VPD Tair
55
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..242
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...297
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
14
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...337
Look up table with window size of 14 days with SW_IN VPD Tair
46
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....334
Look up table with window size of 14 days with SW_IN VPD Tair
.133
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....458
Look up table with window size of 14 days with SW_IN VPD Tair
.71
Look up table with window size of 7 days with SW_IN
33
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......510
Look up table with window size of 14 days with SW_IN VPD Tair
.166
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........500
Look up table with window size of 14 days with SW_IN VPD Tair
...296
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........496
Look up table with window size of 14 days with SW_IN VPD Tair
....398
Look up table with window size of 7 days with SW_IN
57
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
20
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........426
Look up table with window size of 14 days with SW_IN VPD Tair
.......468
Look up table with window size of 7 days with SW_IN
..176
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
88
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............374
Look up table with window size of 14 days with SW_IN VPD Tair
..........596
Look up table with window size of 7 days with SW_IN
....83
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...311
Look up table with window size of 28 days with SW_IN VPD Tair
28
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................534
Look up table with window size of 14 days with SW_IN VPD Tair
...........585
Look up table with window size of 7 days with SW_IN
.....82
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....462
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................458
Look up table with window size of 14 days with SW_IN VPD Tair
...............530
Look up table with window size of 7 days with SW_IN
..........42
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........10
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........661
Look up table with window size of 28 days with SW_IN VPD Tair
...167
Look up table with window size of 35 days with SW_IN VPD Tair
.52
Look up table with window size of 42 days with SW_IN VPD Tair
36
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
18
Look up table with window size of 35 days with SW_IN
21
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................461
Look up table with window size of 14 days with SW_IN VPD Tair
...................425
Look up table with window size of 7 days with SW_IN
...............101
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............5
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............588
Look up table with window size of 28 days with SW_IN VPD Tair
........444
Look up table with window size of 35 days with SW_IN VPD Tair
...243
Look up table with window size of 42 days with SW_IN VPD Tair
.35
Look up table with window size of 49 days with SW_IN VPD Tair
.32
Look up table with window size of 56 days with SW_IN VPD Tair
32
Look up table with window size of 63 days with SW_IN VPD Tair
39
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................447
Look up table with window size of 14 days with SW_IN VPD Tair
........................500
Look up table with window size of 7 days with SW_IN
...................17
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................0
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................710
Look up table with window size of 28 days with SW_IN VPD Tair
............783
Look up table with window size of 35 days with SW_IN VPD Tair
....321
Look up table with window size of 42 days with SW_IN VPD Tair
.24
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
10
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
58
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
0
Mean diurnal course with window size of 28 days: .
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.97
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.146
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..233
Look up table with window size of 14 days with SW_IN VPD Tair
34
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...261
Look up table with window size of 14 days with SW_IN VPD Tair
36
Look up table with window size of 7 days with SW_IN
25
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...286
Look up table with window size of 14 days with SW_IN VPD Tair
.49
Look up table with window size of 7 days with SW_IN
53
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....451
Look up table with window size of 14 days with SW_IN VPD Tair
16
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....434
Look up table with window size of 14 days with SW_IN VPD Tair
.114
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......420
Look up table with window size of 14 days with SW_IN VPD Tair
..114
Look up table with window size of 7 days with SW_IN
.125
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........419
Look up table with window size of 14 days with SW_IN VPD Tair
...344
Look up table with window size of 7 days with SW_IN
43
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........500
Look up table with window size of 14 days with SW_IN VPD Tair
....373
Look up table with window size of 7 days with SW_IN
.91
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
9
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........610
Look up table with window size of 14 days with SW_IN VPD Tair
.....482
Look up table with window size of 7 days with SW_IN
18
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 21 days with SW_IN VPD Tair
34
Look up table with window size of 28 days with SW_IN VPD Tair
15
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............545
Look up table with window size of 14 days with SW_IN VPD Tair
........546
Look up table with window size of 7 days with SW_IN
...37
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..170
Look up table with window size of 28 days with SW_IN VPD Tair
.35
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
58
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................509
Look up table with window size of 14 days with SW_IN VPD Tair
...........569
Look up table with window size of 7 days with SW_IN
.....4
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....1
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....573
Look up table with window size of 28 days with SW_IN VPD Tair
16
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................447
Look up table with window size of 14 days with SW_IN VPD Tair
...............419
Look up table with window size of 7 days with SW_IN
...........86
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........1
Look up table with window size of 21 days with SW_IN VPD Tair
..........577
Look up table with window size of 28 days with SW_IN VPD Tair
....314
Look up table with window size of 35 days with SW_IN VPD Tair
.129
Look up table with window size of 42 days with SW_IN VPD Tair
25
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................348
Look up table with window size of 14 days with SW_IN VPD Tair
....................405
Look up table with window size of 7 days with SW_IN
................256
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............671
Look up table with window size of 28 days with SW_IN VPD Tair
.......632
Look up table with window size of 35 days with SW_IN VPD Tair
84
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................356
Look up table with window size of 14 days with SW_IN VPD Tair
.........................451
Look up table with window size of 7 days with SW_IN
....................257
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................389
Look up table with window size of 28 days with SW_IN VPD Tair
..............507
Look up table with window size of 35 days with SW_IN VPD Tair
.........478
Look up table with window size of 42 days with SW_IN VPD Tair
....345
Look up table with window size of 49 days with SW_IN VPD Tair
27
Look up table with window size of 56 days with SW_IN VPD Tair
17
Look up table with window size of 63 days with SW_IN VPD Tair
14
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
14
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
8
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.115
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.168
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..259
Look up table with window size of 14 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...319
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...386
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....332
Look up table with window size of 14 days with SW_IN VPD Tair
.49
Look up table with window size of 7 days with SW_IN
87
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....447
Look up table with window size of 14 days with SW_IN VPD Tair
.114
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......546
Look up table with window size of 14 days with SW_IN VPD Tair
.129
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........401
Look up table with window size of 14 days with SW_IN VPD Tair
....386
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........501
Look up table with window size of 14 days with SW_IN VPD Tair
....295
Look up table with window size of 7 days with SW_IN
.94
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
47
Look up table with window size of 28 days with SW_IN VPD Tair
21
Look up table with window size of 35 days with SW_IN VPD Tair
14
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........444
Look up table with window size of 14 days with SW_IN VPD Tair
.......424
Look up table with window size of 7 days with SW_IN
..73
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..1
Mean diurnal course with window size of 2 days: .
..2
Look up table with window size of 21 days with SW_IN VPD Tair
..170
Look up table with window size of 28 days with SW_IN VPD Tair
26
Look up table with window size of 35 days with SW_IN VPD Tair
14
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............581
Look up table with window size of 14 days with SW_IN VPD Tair
........603
Look up table with window size of 7 days with SW_IN
..4
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..194
Look up table with window size of 28 days with SW_IN VPD Tair
16
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................445
Look up table with window size of 14 days with SW_IN VPD Tair
............657
Look up table with window size of 7 days with SW_IN
.....14
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....1
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....496
Look up table with window size of 28 days with SW_IN VPD Tair
52
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................588
Look up table with window size of 14 days with SW_IN VPD Tair
..............331
Look up table with window size of 7 days with SW_IN
..........2
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........275
Look up table with window size of 28 days with SW_IN VPD Tair
........93
Look up table with window size of 35 days with SW_IN VPD Tair
.......12
Look up table with window size of 42 days with SW_IN VPD Tair
.......3
Look up table with window size of 49 days with SW_IN VPD Tair
.......2
Look up table with window size of 56 days with SW_IN VPD Tair
.......0
Look up table with window size of 63 days with SW_IN VPD Tair
.......0
Look up table with window size of 70 days with SW_IN VPD Tair
.......0
Look up table with window size of 14 days with SW_IN
.......274
Look up table with window size of 21 days with SW_IN
....388
Look up table with window size of 28 days with SW_IN
38
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'PA' in 12 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................408
Look up table with window size of 14 days with SW_IN VPD Tair
...................604
Look up table with window size of 7 days with SW_IN
.............40
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............1
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 21 days with SW_IN VPD Tair
.............641
Look up table with window size of 28 days with SW_IN VPD Tair
.......635
Look up table with window size of 35 days with SW_IN VPD Tair
45
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
9
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................407
Look up table with window size of 14 days with SW_IN VPD Tair
........................400
Look up table with window size of 7 days with SW_IN
....................107
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................1
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................433
Look up table with window size of 28 days with SW_IN VPD Tair
...............465
Look up table with window size of 35 days with SW_IN VPD Tair
..........426
Look up table with window size of 42 days with SW_IN VPD Tair
......230
Look up table with window size of 49 days with SW_IN VPD Tair
....182
Look up table with window size of 56 days with SW_IN VPD Tair
..112
Look up table with window size of 63 days with SW_IN VPD Tair
.85
Look up table with window size of 70 days with SW_IN VPD Tair
10
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
7
Look up table with window size of 35 days with SW_IN
7
Finished gap filling of 'PA' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
80
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..208
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...356
Look up table with window size of 14 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....461
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....488
Look up table with window size of 14 days with SW_IN VPD Tair
59
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......440
Look up table with window size of 14 days with SW_IN VPD Tair
..215
Look up table with window size of 7 days with SW_IN
21
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........503
Look up table with window size of 14 days with SW_IN VPD Tair
...263
Look up table with window size of 7 days with SW_IN
35
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........558
Look up table with window size of 14 days with SW_IN VPD Tair
....389
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
22
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........505
Look up table with window size of 14 days with SW_IN VPD Tair
......533
Look up table with window size of 7 days with SW_IN
.50
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
51
Look up table with window size of 28 days with SW_IN VPD Tair
21
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............581
Look up table with window size of 14 days with SW_IN VPD Tair
........720
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
96
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................480
Look up table with window size of 14 days with SW_IN VPD Tair
...........627
Look up table with window size of 7 days with SW_IN
.....25
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....498
Look up table with window size of 28 days with SW_IN VPD Tair
38
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................498
Look up table with window size of 14 days with SW_IN VPD Tair
...............482
Look up table with window size of 7 days with SW_IN
..........67
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........647
Look up table with window size of 28 days with SW_IN VPD Tair
...241
Look up table with window size of 35 days with SW_IN VPD Tair
62
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................378
Look up table with window size of 14 days with SW_IN VPD Tair
....................654
Look up table with window size of 7 days with SW_IN
.............87
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............609
Look up table with window size of 28 days with SW_IN VPD Tair
......458
Look up table with window size of 35 days with SW_IN VPD Tair
..85
Look up table with window size of 42 days with SW_IN VPD Tair
.22
Look up table with window size of 49 days with SW_IN VPD Tair
.36
Look up table with window size of 56 days with SW_IN VPD Tair
18
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
18
Look up table with window size of 14 days with SW_IN
19
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................495
Look up table with window size of 14 days with SW_IN VPD Tair
.......................533
Look up table with window size of 7 days with SW_IN
..................3
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................849
Look up table with window size of 28 days with SW_IN VPD Tair
.........598
Look up table with window size of 35 days with SW_IN VPD Tair
....331
Look up table with window size of 42 days with SW_IN VPD Tair
45
Look up table with window size of 49 days with SW_IN VPD Tair
17
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
68
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
13
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.98
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.167
Look up table with window size of 14 days with SW_IN VPD Tair
15
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..255
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...270
Look up table with window size of 14 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...368
Look up table with window size of 14 days with SW_IN VPD Tair
16
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....424
Look up table with window size of 14 days with SW_IN VPD Tair
43
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....479
Look up table with window size of 14 days with SW_IN VPD Tair
67
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......383
Look up table with window size of 14 days with SW_IN VPD Tair
..176
Look up table with window size of 7 days with SW_IN
.112
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........456
Look up table with window size of 14 days with SW_IN VPD Tair
...290
Look up table with window size of 7 days with SW_IN
55
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........401
Look up table with window size of 14 days with SW_IN VPD Tair
.....465
Look up table with window size of 7 days with SW_IN
.56
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
18
Look up table with window size of 28 days with SW_IN VPD Tair
24
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........467
Look up table with window size of 14 days with SW_IN VPD Tair
.......483
Look up table with window size of 7 days with SW_IN
..3
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..171
Look up table with window size of 28 days with SW_IN VPD Tair
41
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............360
Look up table with window size of 14 days with SW_IN VPD Tair
..........340
Look up table with window size of 7 days with SW_IN
......211
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....352
Look up table with window size of 28 days with SW_IN VPD Tair
.113
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
10
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................519
Look up table with window size of 14 days with SW_IN VPD Tair
...........593
Look up table with window size of 7 days with SW_IN
.....10
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....387
Look up table with window size of 28 days with SW_IN VPD Tair
.98
Look up table with window size of 35 days with SW_IN VPD Tair
35
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
18
Look up table with window size of 56 days with SW_IN VPD Tair
9
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................364
Look up table with window size of 14 days with SW_IN VPD Tair
................723
Look up table with window size of 7 days with SW_IN
.........121
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........489
Look up table with window size of 28 days with SW_IN VPD Tair
...181
Look up table with window size of 35 days with SW_IN VPD Tair
.56
Look up table with window size of 42 days with SW_IN VPD Tair
69
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................363
Look up table with window size of 14 days with SW_IN VPD Tair
....................290
Look up table with window size of 7 days with SW_IN
.................256
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............396
Look up table with window size of 28 days with SW_IN VPD Tair
...........436
Look up table with window size of 35 days with SW_IN VPD Tair
......535
Look up table with window size of 42 days with SW_IN VPD Tair
.82
Look up table with window size of 49 days with SW_IN VPD Tair
43
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................366
Look up table with window size of 14 days with SW_IN VPD Tair
.........................667
Look up table with window size of 7 days with SW_IN
..................66
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................479
Look up table with window size of 28 days with SW_IN VPD Tair
.............621
Look up table with window size of 35 days with SW_IN VPD Tair
......327
Look up table with window size of 42 days with SW_IN VPD Tair
...270
Look up table with window size of 49 days with SW_IN VPD Tair
44
Look up table with window size of 56 days with SW_IN VPD Tair
17
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
5
Look up table with window size of 56 days with SW_IN
3
Look up table with window size of 63 days with SW_IN
1
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
1
Mean diurnal course with window size of 28 days: .
0
Mean diurnal course with window size of 35 days: .
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
7
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
18
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
48
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..211
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..262
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...374
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....303
Look up table with window size of 14 days with SW_IN VPD Tair
.164
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....473
Look up table with window size of 14 days with SW_IN VPD Tair
78
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......342
Look up table with window size of 14 days with SW_IN VPD Tair
...236
Look up table with window size of 7 days with SW_IN
73
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
15
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........447
Look up table with window size of 14 days with SW_IN VPD Tair
...292
Look up table with window size of 7 days with SW_IN
72
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........547
Look up table with window size of 14 days with SW_IN VPD Tair
....410
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........411
Look up table with window size of 14 days with SW_IN VPD Tair
.......693
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
52
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............431
Look up table with window size of 14 days with SW_IN VPD Tair
.........446
Look up table with window size of 7 days with SW_IN
.....45
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....367
Look up table with window size of 28 days with SW_IN VPD Tair
.43
Look up table with window size of 35 days with SW_IN VPD Tair
12
Look up table with window size of 42 days with SW_IN VPD Tair
11
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
41
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................475
Look up table with window size of 14 days with SW_IN VPD Tair
............727
Look up table with window size of 7 days with SW_IN
....19
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....379
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
45
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................387
Look up table with window size of 14 days with SW_IN VPD Tair
................496
Look up table with window size of 7 days with SW_IN
...........91
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........760
Look up table with window size of 28 days with SW_IN VPD Tair
..221
Look up table with window size of 35 days with SW_IN VPD Tair
26
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
5
Look up table with window size of 70 days with SW_IN VPD Tair
3
Look up table with window size of 14 days with SW_IN
6
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................398
Look up table with window size of 14 days with SW_IN VPD Tair
....................641
Look up table with window size of 7 days with SW_IN
.............70
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............638
Look up table with window size of 28 days with SW_IN VPD Tair
......480
Look up table with window size of 35 days with SW_IN VPD Tair
.82
Look up table with window size of 42 days with SW_IN VPD Tair
20
Look up table with window size of 49 days with SW_IN VPD Tair
20
Look up table with window size of 56 days with SW_IN VPD Tair
14
Look up table with window size of 63 days with SW_IN VPD Tair
3
Look up table with window size of 70 days with SW_IN VPD Tair
12
Look up table with window size of 14 days with SW_IN
18
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................331
Look up table with window size of 14 days with SW_IN VPD Tair
.........................534
Look up table with window size of 7 days with SW_IN
....................278
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................466
Look up table with window size of 28 days with SW_IN VPD Tair
............572
Look up table with window size of 35 days with SW_IN VPD Tair
......484
Look up table with window size of 42 days with SW_IN VPD Tair
..72
Look up table with window size of 49 days with SW_IN VPD Tair
.7
Look up table with window size of 56 days with SW_IN VPD Tair
.51
Look up table with window size of 63 days with SW_IN VPD Tair
12
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
54
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
13
Look up table with window size of 35 days with SW_IN
5
Finished gap filling of 'PA' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
25
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
56
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..202
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..259
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...322
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...367
Look up table with window size of 14 days with SW_IN VPD Tair
20
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....414
Look up table with window size of 14 days with SW_IN VPD Tair
42
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....518
Look up table with window size of 14 days with SW_IN VPD Tair
41
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......500
Look up table with window size of 14 days with SW_IN VPD Tair
.167
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........496
Look up table with window size of 14 days with SW_IN VPD Tair
...234
Look up table with window size of 7 days with SW_IN
25
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
13
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
6
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
25
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........547
Look up table with window size of 14 days with SW_IN VPD Tair
....385
Look up table with window size of 7 days with SW_IN
16
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
19
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........500
Look up table with window size of 14 days with SW_IN VPD Tair
......329
Look up table with window size of 7 days with SW_IN
...32
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...208
Look up table with window size of 28 days with SW_IN VPD Tair
62
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
8
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............373
Look up table with window size of 14 days with SW_IN VPD Tair
..........394
Look up table with window size of 7 days with SW_IN
......118
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....2
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....404
Look up table with window size of 28 days with SW_IN VPD Tair
.94
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................537
Look up table with window size of 14 days with SW_IN VPD Tair
...........514
Look up table with window size of 7 days with SW_IN
......9
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......479
Look up table with window size of 28 days with SW_IN VPD Tair
.72
Look up table with window size of 35 days with SW_IN VPD Tair
42
Look up table with window size of 42 days with SW_IN VPD Tair
17
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................531
Look up table with window size of 14 days with SW_IN VPD Tair
..............530
Look up table with window size of 7 days with SW_IN
.........60
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........422
Look up table with window size of 28 days with SW_IN VPD Tair
....209
Look up table with window size of 35 days with SW_IN VPD Tair
..123
Look up table with window size of 42 days with SW_IN VPD Tair
.76
Look up table with window size of 49 days with SW_IN VPD Tair
54
Look up table with window size of 56 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................157
Look up table with window size of 14 days with SW_IN VPD Tair
......................671
Look up table with window size of 7 days with SW_IN
...............73
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............1
Mean diurnal course with window size of 2 days: .
...............0
Look up table with window size of 21 days with SW_IN VPD Tair
...............857
Look up table with window size of 28 days with SW_IN VPD Tair
......411
Look up table with window size of 35 days with SW_IN VPD Tair
..182
Look up table with window size of 42 days with SW_IN VPD Tair
49
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
3
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................519
Look up table with window size of 14 days with SW_IN VPD Tair
.......................623
Look up table with window size of 7 days with SW_IN
.................34
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................1
Look up table with window size of 21 days with SW_IN VPD Tair
.................530
Look up table with window size of 28 days with SW_IN VPD Tair
...........653
Look up table with window size of 35 days with SW_IN VPD Tair
.....366
Look up table with window size of 42 days with SW_IN VPD Tair
.55
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
11
Look up table with window size of 63 days with SW_IN VPD Tair
8
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
58
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.181
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..215
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..257
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...321
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...340
Look up table with window size of 14 days with SW_IN VPD Tair
31
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....411
Look up table with window size of 14 days with SW_IN VPD Tair
48
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....442
Look up table with window size of 14 days with SW_IN VPD Tair
.65
Look up table with window size of 7 days with SW_IN
44
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......543
Look up table with window size of 14 days with SW_IN VPD Tair
.131
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........491
Look up table with window size of 14 days with SW_IN VPD Tair
...281
Look up table with window size of 7 days with SW_IN
37
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........373
Look up table with window size of 14 days with SW_IN VPD Tair
......399
Look up table with window size of 7 days with SW_IN
..164
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
12
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
10
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
14
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........403
Look up table with window size of 14 days with SW_IN VPD Tair
.......466
Look up table with window size of 7 days with SW_IN
..106
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.3
Look up table with window size of 21 days with SW_IN VPD Tair
.169
Look up table with window size of 28 days with SW_IN VPD Tair
8
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............527
Look up table with window size of 14 days with SW_IN VPD Tair
........517
Look up table with window size of 7 days with SW_IN
...4
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...267
Look up table with window size of 28 days with SW_IN VPD Tair
17
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
47
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................512
Look up table with window size of 14 days with SW_IN VPD Tair
...........582
Look up table with window size of 7 days with SW_IN
.....22
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....487
Look up table with window size of 28 days with SW_IN VPD Tair
44
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
15
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................343
Look up table with window size of 14 days with SW_IN VPD Tair
................649
Look up table with window size of 7 days with SW_IN
..........149
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........0
Look up table with window size of 21 days with SW_IN VPD Tair
........606
Look up table with window size of 28 days with SW_IN VPD Tair
..214
Look up table with window size of 35 days with SW_IN VPD Tair
43
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................597
Look up table with window size of 14 days with SW_IN VPD Tair
..................543
Look up table with window size of 7 days with SW_IN
............11
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............401
Look up table with window size of 28 days with SW_IN VPD Tair
........371
Look up table with window size of 35 days with SW_IN VPD Tair
....415
Look up table with window size of 42 days with SW_IN VPD Tair
65
Look up table with window size of 49 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................527
Look up table with window size of 14 days with SW_IN VPD Tair
.......................636
Look up table with window size of 7 days with SW_IN
.................25
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................5
Mean diurnal course with window size of 2 days: .
................8
Look up table with window size of 21 days with SW_IN VPD Tair
................415
Look up table with window size of 28 days with SW_IN VPD Tair
............427
Look up table with window size of 35 days with SW_IN VPD Tair
........615
Look up table with window size of 42 days with SW_IN VPD Tair
..164
Look up table with window size of 49 days with SW_IN VPD Tair
32
Look up table with window size of 56 days with SW_IN VPD Tair
8
Look up table with window size of 63 days with SW_IN VPD Tair
5
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
5
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
78
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.85
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
37
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.175
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..212
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..245
Look up table with window size of 14 days with SW_IN VPD Tair
22
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...315
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...363
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....373
Look up table with window size of 14 days with SW_IN VPD Tair
17
Look up table with window size of 7 days with SW_IN
76
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....489
Look up table with window size of 14 days with SW_IN VPD Tair
72
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......277
Look up table with window size of 14 days with SW_IN VPD Tair
...252
Look up table with window size of 7 days with SW_IN
.103
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
13
Look up table with window size of 28 days with SW_IN VPD Tair
26
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........478
Look up table with window size of 14 days with SW_IN VPD Tair
...312
Look up table with window size of 7 days with SW_IN
9
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........489
Look up table with window size of 14 days with SW_IN VPD Tair
....450
Look up table with window size of 7 days with SW_IN
28
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........448
Look up table with window size of 14 days with SW_IN VPD Tair
.......594
Look up table with window size of 7 days with SW_IN
.30
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
93
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............631
Look up table with window size of 14 days with SW_IN VPD Tair
.......367
Look up table with window size of 7 days with SW_IN
....8
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...307
Look up table with window size of 28 days with SW_IN VPD Tair
80
Look up table with window size of 35 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................596
Look up table with window size of 14 days with SW_IN VPD Tair
..........599
Look up table with window size of 7 days with SW_IN
....16
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....309
Look up table with window size of 28 days with SW_IN VPD Tair
.96
Look up table with window size of 35 days with SW_IN VPD Tair
43
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................414
Look up table with window size of 14 days with SW_IN VPD Tair
...............524
Look up table with window size of 7 days with SW_IN
..........28
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........475
Look up table with window size of 28 days with SW_IN VPD Tair
.....402
Look up table with window size of 35 days with SW_IN VPD Tair
.79
Look up table with window size of 42 days with SW_IN VPD Tair
43
Look up table with window size of 49 days with SW_IN VPD Tair
21
Look up table with window size of 56 days with SW_IN VPD Tair
10
Look up table with window size of 63 days with SW_IN VPD Tair
5
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
6
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................429
Look up table with window size of 14 days with SW_IN VPD Tair
...................560
Look up table with window size of 7 days with SW_IN
..............25
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............620
Look up table with window size of 28 days with SW_IN VPD Tair
.......567
Look up table with window size of 35 days with SW_IN VPD Tair
..27
Look up table with window size of 42 days with SW_IN VPD Tair
.20
Look up table with window size of 49 days with SW_IN VPD Tair
.40
Look up table with window size of 56 days with SW_IN VPD Tair
.9
Look up table with window size of 63 days with SW_IN VPD Tair
.78
Look up table with window size of 70 days with SW_IN VPD Tair
6
Look up table with window size of 14 days with SW_IN
12
Look up table with window size of 21 days with SW_IN
12
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................456
Look up table with window size of 14 days with SW_IN VPD Tair
........................597
Look up table with window size of 7 days with SW_IN
..................46
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................570
Look up table with window size of 28 days with SW_IN VPD Tair
............495
Look up table with window size of 35 days with SW_IN VPD Tair
.......346
Look up table with window size of 42 days with SW_IN VPD Tair
...87
Look up table with window size of 49 days with SW_IN VPD Tair
..44
Look up table with window size of 56 days with SW_IN VPD Tair
..61
Look up table with window size of 63 days with SW_IN VPD Tair
.129
Look up table with window size of 70 days with SW_IN VPD Tair
18
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
7
Look up table with window size of 35 days with SW_IN
22
Finished gap filling of 'PA' in 10 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
58
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.99
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.118
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.139
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.174
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..213
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..257
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...313
Look up table with window size of 14 days with SW_IN VPD Tair
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...386
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....360
Look up table with window size of 14 days with SW_IN VPD Tair
.106
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....480
Look up table with window size of 14 days with SW_IN VPD Tair
61
Look up table with window size of 7 days with SW_IN
19
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......452
Look up table with window size of 14 days with SW_IN VPD Tair
..180
Look up table with window size of 7 days with SW_IN
44
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........502
Look up table with window size of 14 days with SW_IN VPD Tair
...281
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
23
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........478
Look up table with window size of 14 days with SW_IN VPD Tair
....466
Look up table with window size of 7 days with SW_IN
18
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
10
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........529
Look up table with window size of 14 days with SW_IN VPD Tair
......531
Look up table with window size of 7 days with SW_IN
.24
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
68
Look up table with window size of 28 days with SW_IN VPD Tair
11
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............569
Look up table with window size of 14 days with SW_IN VPD Tair
........490
Look up table with window size of 7 days with SW_IN
...11
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...284
Look up table with window size of 28 days with SW_IN VPD Tair
32
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................331
Look up table with window size of 14 days with SW_IN VPD Tair
.............600
Look up table with window size of 7 days with SW_IN
.......117
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......605
Look up table with window size of 28 days with SW_IN VPD Tair
16
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
5
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................327
Look up table with window size of 14 days with SW_IN VPD Tair
................402
Look up table with window size of 7 days with SW_IN
............189
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........463
Look up table with window size of 28 days with SW_IN VPD Tair
......472
Look up table with window size of 35 days with SW_IN VPD Tair
.108
Look up table with window size of 42 days with SW_IN VPD Tair
31
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................533
Look up table with window size of 14 days with SW_IN VPD Tair
..................475
Look up table with window size of 7 days with SW_IN
.............43
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............644
Look up table with window size of 28 days with SW_IN VPD Tair
.......470
Look up table with window size of 35 days with SW_IN VPD Tair
..40
Look up table with window size of 42 days with SW_IN VPD Tair
..27
Look up table with window size of 49 days with SW_IN VPD Tair
.14
Look up table with window size of 56 days with SW_IN VPD Tair
.0
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.58
Look up table with window size of 21 days with SW_IN
.101
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................460
Look up table with window size of 14 days with SW_IN VPD Tair
........................547
Look up table with window size of 7 days with SW_IN
..................95
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................568
Look up table with window size of 28 days with SW_IN VPD Tair
............872
Look up table with window size of 35 days with SW_IN VPD Tair
...288
Look up table with window size of 42 days with SW_IN VPD Tair
38
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
6
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
40
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.90
Look up table with window size of 14 days with SW_IN VPD Tair
6
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..266
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...310
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...367
Look up table with window size of 14 days with SW_IN VPD Tair
21
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....337
Look up table with window size of 14 days with SW_IN VPD Tair
.63
Look up table with window size of 7 days with SW_IN
64
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....521
Look up table with window size of 14 days with SW_IN VPD Tair
34
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......516
Look up table with window size of 14 days with SW_IN VPD Tair
.158
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........384
Look up table with window size of 14 days with SW_IN VPD Tair
....118
Look up table with window size of 7 days with SW_IN
...224
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
77
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........514
Look up table with window size of 14 days with SW_IN VPD Tair
....349
Look up table with window size of 7 days with SW_IN
.79
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
23
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........518
Look up table with window size of 14 days with SW_IN VPD Tair
......541
Look up table with window size of 7 days with SW_IN
.5
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.101
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............451
Look up table with window size of 14 days with SW_IN VPD Tair
.........426
Look up table with window size of 7 days with SW_IN
.....33
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....450
Look up table with window size of 28 days with SW_IN VPD Tair
23
Look up table with window size of 35 days with SW_IN VPD Tair
11
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................470
Look up table with window size of 14 days with SW_IN VPD Tair
............213
Look up table with window size of 7 days with SW_IN
.........90
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........352
Look up table with window size of 28 days with SW_IN VPD Tair
.....509
Look up table with window size of 35 days with SW_IN VPD Tair
20
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
12
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................430
Look up table with window size of 14 days with SW_IN VPD Tair
...............551
Look up table with window size of 7 days with SW_IN
..........30
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........1
Mean diurnal course with window size of 2 days: .
.........1
Look up table with window size of 21 days with SW_IN VPD Tair
.........534
Look up table with window size of 28 days with SW_IN VPD Tair
....291
Look up table with window size of 35 days with SW_IN VPD Tair
.73
Look up table with window size of 42 days with SW_IN VPD Tair
28
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
52
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................373
Look up table with window size of 14 days with SW_IN VPD Tair
....................629
Look up table with window size of 7 days with SW_IN
..............94
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............1
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............552
Look up table with window size of 28 days with SW_IN VPD Tair
.......531
Look up table with window size of 35 days with SW_IN VPD Tair
..101
Look up table with window size of 42 days with SW_IN VPD Tair
.26
Look up table with window size of 49 days with SW_IN VPD Tair
57
Look up table with window size of 56 days with SW_IN VPD Tair
30
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................262
Look up table with window size of 14 days with SW_IN VPD Tair
..........................499
Look up table with window size of 7 days with SW_IN
.....................188
Mean diurnal course with window size of 0 days: .
...................0
Mean diurnal course with window size of 1 days: .
...................3
Mean diurnal course with window size of 2 days: .
...................0
Look up table with window size of 21 days with SW_IN VPD Tair
...................646
Look up table with window size of 28 days with SW_IN VPD Tair
............620
Look up table with window size of 35 days with SW_IN VPD Tair
......381
Look up table with window size of 42 days with SW_IN VPD Tair
..140
Look up table with window size of 49 days with SW_IN VPD Tair
.22
Look up table with window size of 56 days with SW_IN VPD Tair
.29
Look up table with window size of 63 days with SW_IN VPD Tair
28
Look up table with window size of 70 days with SW_IN VPD Tair
6
Look up table with window size of 14 days with SW_IN
35
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
7
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
46
Look up table with window size of 14 days with SW_IN VPD Tair
18
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.170
Look up table with window size of 14 days with SW_IN VPD Tair
11
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...223
Look up table with window size of 14 days with SW_IN VPD Tair
93
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...342
Look up table with window size of 14 days with SW_IN VPD Tair
46
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....385
Look up table with window size of 14 days with SW_IN VPD Tair
80
Look up table with window size of 7 days with SW_IN
2
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....401
Look up table with window size of 14 days with SW_IN VPD Tair
.152
Look up table with window size of 7 days with SW_IN
9
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......348
Look up table with window size of 14 days with SW_IN VPD Tair
...247
Look up table with window size of 7 days with SW_IN
78
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........467
Look up table with window size of 14 days with SW_IN VPD Tair
...238
Look up table with window size of 7 days with SW_IN
.71
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
28
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........387
Look up table with window size of 14 days with SW_IN VPD Tair
.....568
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........422
Look up table with window size of 14 days with SW_IN VPD Tair
.......596
Look up table with window size of 7 days with SW_IN
.85
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
50
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
5
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............551
Look up table with window size of 14 days with SW_IN VPD Tair
........495
Look up table with window size of 7 days with SW_IN
...33
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...4
Look up table with window size of 21 days with SW_IN VPD Tair
...287
Look up table with window size of 28 days with SW_IN VPD Tair
13
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
7
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................621
Look up table with window size of 14 days with SW_IN VPD Tair
..........276
Look up table with window size of 7 days with SW_IN
.......0
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......6
Look up table with window size of 21 days with SW_IN VPD Tair
.......369
Look up table with window size of 28 days with SW_IN VPD Tair
....301
Look up table with window size of 35 days with SW_IN VPD Tair
.86
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
16
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................391
Look up table with window size of 14 days with SW_IN VPD Tair
................719
Look up table with window size of 7 days with SW_IN
........92
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........1
Look up table with window size of 21 days with SW_IN VPD Tair
........470
Look up table with window size of 28 days with SW_IN VPD Tair
...290
Look up table with window size of 35 days with SW_IN VPD Tair
29
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
12
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................421
Look up table with window size of 14 days with SW_IN VPD Tair
...................623
Look up table with window size of 7 days with SW_IN
.............17
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............361
Look up table with window size of 28 days with SW_IN VPD Tair
.........430
Look up table with window size of 35 days with SW_IN VPD Tair
.....221
Look up table with window size of 42 days with SW_IN VPD Tair
...196
Look up table with window size of 49 days with SW_IN VPD Tair
.49
Look up table with window size of 56 days with SW_IN VPD Tair
11
Look up table with window size of 63 days with SW_IN VPD Tair
11
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
14
Look up table with window size of 28 days with SW_IN
23
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
17
Look up table with window size of 49 days with SW_IN
7
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................575
Look up table with window size of 14 days with SW_IN VPD Tair
.......................523
Look up table with window size of 7 days with SW_IN
.................2
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................626
Look up table with window size of 28 days with SW_IN VPD Tair
...........531
Look up table with window size of 35 days with SW_IN VPD Tair
......330
Look up table with window size of 42 days with SW_IN VPD Tair
..174
Look up table with window size of 49 days with SW_IN VPD Tair
.34
Look up table with window size of 56 days with SW_IN VPD Tair
31
Look up table with window size of 63 days with SW_IN VPD Tair
11
Look up table with window size of 70 days with SW_IN VPD Tair
10
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
18
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
8
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
9
Look up table with window size of 14 days with SW_IN VPD Tair
12
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.117
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.167
Look up table with window size of 14 days with SW_IN VPD Tair
10
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..215
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..245
Look up table with window size of 14 days with SW_IN VPD Tair
16
Look up table with window size of 7 days with SW_IN
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...310
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
10
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...256
Look up table with window size of 14 days with SW_IN VPD Tair
.131
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....429
Look up table with window size of 14 days with SW_IN VPD Tair
32
Look up table with window size of 7 days with SW_IN
5
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....414
Look up table with window size of 14 days with SW_IN VPD Tair
.110
Look up table with window size of 7 days with SW_IN
34
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......482
Look up table with window size of 14 days with SW_IN VPD Tair
.171
Look up table with window size of 7 days with SW_IN
21
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........515
Look up table with window size of 14 days with SW_IN VPD Tair
..264
Look up table with window size of 7 days with SW_IN
27
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........606
Look up table with window size of 14 days with SW_IN VPD Tair
...362
Look up table with window size of 7 days with SW_IN
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........571
Look up table with window size of 14 days with SW_IN VPD Tair
.....476
Look up table with window size of 7 days with SW_IN
.12
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.22
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
81
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............537
Look up table with window size of 14 days with SW_IN VPD Tair
........477
Look up table with window size of 7 days with SW_IN
...6
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...2
Mean diurnal course with window size of 2 days: .
...1
Look up table with window size of 21 days with SW_IN VPD Tair
...270
Look up table with window size of 28 days with SW_IN VPD Tair
.102
Look up table with window size of 35 days with SW_IN VPD Tair
2
Look up table with window size of 42 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................498
Look up table with window size of 14 days with SW_IN VPD Tair
...........520
Look up table with window size of 7 days with SW_IN
......34
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......308
Look up table with window size of 28 days with SW_IN VPD Tair
...297
Look up table with window size of 35 days with SW_IN VPD Tair
6
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................394
Look up table with window size of 14 days with SW_IN VPD Tair
................508
Look up table with window size of 7 days with SW_IN
...........91
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........625
Look up table with window size of 28 days with SW_IN VPD Tair
...212
Look up table with window size of 35 days with SW_IN VPD Tair
.158
Look up table with window size of 42 days with SW_IN VPD Tair
15
Look up table with window size of 49 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................534
Look up table with window size of 14 days with SW_IN VPD Tair
..................593
Look up table with window size of 7 days with SW_IN
............17
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............629
Look up table with window size of 28 days with SW_IN VPD Tair
......510
Look up table with window size of 35 days with SW_IN VPD Tair
.108
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................425
Look up table with window size of 14 days with SW_IN VPD Tair
........................653
Look up table with window size of 7 days with SW_IN
..................137
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................1
Mean diurnal course with window size of 2 days: .
................3
Look up table with window size of 21 days with SW_IN VPD Tair
................703
Look up table with window size of 28 days with SW_IN VPD Tair
.........573
Look up table with window size of 35 days with SW_IN VPD Tair
...384
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.83
Look up table with window size of 14 days with SW_IN VPD Tair
16
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.118
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.148
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.162
Look up table with window size of 14 days with SW_IN VPD Tair
20
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..203
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
15
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..247
Look up table with window size of 14 days with SW_IN VPD Tair
20
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...300
Look up table with window size of 14 days with SW_IN VPD Tair
22
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...332
Look up table with window size of 14 days with SW_IN VPD Tair
38
Look up table with window size of 7 days with SW_IN
18
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....397
Look up table with window size of 14 days with SW_IN VPD Tair
63
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....248
Look up table with window size of 14 days with SW_IN VPD Tair
...220
Look up table with window size of 7 days with SW_IN
94
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......366
Look up table with window size of 14 days with SW_IN VPD Tair
...254
Look up table with window size of 7 days with SW_IN
43
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Look up table with window size of 28 days with SW_IN VPD Tair
5
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........449
Look up table with window size of 14 days with SW_IN VPD Tair
...348
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........360
Look up table with window size of 14 days with SW_IN VPD Tair
......503
Look up table with window size of 7 days with SW_IN
.106
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........540
Look up table with window size of 14 days with SW_IN VPD Tair
......575
Look up table with window size of 7 days with SW_IN
16
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
30
Look up table with window size of 28 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............637
Look up table with window size of 14 days with SW_IN VPD Tair
.......501
Look up table with window size of 7 days with SW_IN
..4
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..1
Look up table with window size of 21 days with SW_IN VPD Tair
..254
Look up table with window size of 28 days with SW_IN VPD Tair
1
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................536
Look up table with window size of 14 days with SW_IN VPD Tair
...........654
Look up table with window size of 7 days with SW_IN
....58
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....372
Look up table with window size of 28 days with SW_IN VPD Tair
33
Look up table with window size of 35 days with SW_IN VPD Tair
12
Look up table with window size of 42 days with SW_IN VPD Tair
9
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................317
Look up table with window size of 14 days with SW_IN VPD Tair
................572
Look up table with window size of 7 days with SW_IN
...........94
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........628
Look up table with window size of 28 days with SW_IN VPD Tair
...245
Look up table with window size of 35 days with SW_IN VPD Tair
.62
Look up table with window size of 42 days with SW_IN VPD Tair
42
Look up table with window size of 49 days with SW_IN VPD Tair
14
Look up table with window size of 56 days with SW_IN VPD Tair
14
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
11
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................411
Look up table with window size of 14 days with SW_IN VPD Tair
...................617
Look up table with window size of 7 days with SW_IN
.............81
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............660
Look up table with window size of 28 days with SW_IN VPD Tair
......598
Look up table with window size of 35 days with SW_IN VPD Tair
18
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
14
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................490
Look up table with window size of 14 days with SW_IN VPD Tair
.......................550
Look up table with window size of 7 days with SW_IN
..................34
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................715
Look up table with window size of 28 days with SW_IN VPD Tair
..........380
Look up table with window size of 35 days with SW_IN VPD Tair
.......495
Look up table with window size of 42 days with SW_IN VPD Tair
..142
Look up table with window size of 49 days with SW_IN VPD Tair
38
Look up table with window size of 56 days with SW_IN VPD Tair
22
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
2
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
30
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.176
Look up table with window size of 14 days with SW_IN VPD Tair
6
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..218
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..267
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...236
Look up table with window size of 14 days with SW_IN VPD Tair
64
Look up table with window size of 7 days with SW_IN
22
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...378
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....450
Look up table with window size of 14 days with SW_IN VPD Tair
18
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....294
Look up table with window size of 14 days with SW_IN VPD Tair
..160
Look up table with window size of 7 days with SW_IN
.103
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......502
Look up table with window size of 14 days with SW_IN VPD Tair
.123
Look up table with window size of 7 days with SW_IN
38
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
11
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........409
Look up table with window size of 14 days with SW_IN VPD Tair
....337
Look up table with window size of 7 days with SW_IN
57
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
7
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........608
Look up table with window size of 14 days with SW_IN VPD Tair
...356
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........438
Look up table with window size of 14 days with SW_IN VPD Tair
.......450
Look up table with window size of 7 days with SW_IN
..105
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.77
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
18
Look up table with window size of 42 days with SW_IN VPD Tair
12
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
62
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............381
Look up table with window size of 14 days with SW_IN VPD Tair
..........590
Look up table with window size of 7 days with SW_IN
....81
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...274
Look up table with window size of 28 days with SW_IN VPD Tair
32
Look up table with window size of 35 days with SW_IN VPD Tair
18
Look up table with window size of 42 days with SW_IN VPD Tair
23
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................515
Look up table with window size of 14 days with SW_IN VPD Tair
...........471
Look up table with window size of 7 days with SW_IN
......42
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......4
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......451
Look up table with window size of 28 days with SW_IN VPD Tair
.146
Look up table with window size of 35 days with SW_IN VPD Tair
32
Look up table with window size of 42 days with SW_IN VPD Tair
12
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................374
Look up table with window size of 14 days with SW_IN VPD Tair
................708
Look up table with window size of 7 days with SW_IN
.........121
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........1
Look up table with window size of 21 days with SW_IN VPD Tair
........549
Look up table with window size of 28 days with SW_IN VPD Tair
..183
Look up table with window size of 35 days with SW_IN VPD Tair
68
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................514
Look up table with window size of 14 days with SW_IN VPD Tair
..................544
Look up table with window size of 7 days with SW_IN
.............27
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 21 days with SW_IN VPD Tair
.............582
Look up table with window size of 28 days with SW_IN VPD Tair
.......477
Look up table with window size of 35 days with SW_IN VPD Tair
..140
Look up table with window size of 42 days with SW_IN VPD Tair
.57
Look up table with window size of 49 days with SW_IN VPD Tair
13
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
23
Look up table with window size of 35 days with SW_IN
23
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................458
Look up table with window size of 14 days with SW_IN VPD Tair
........................615
Look up table with window size of 7 days with SW_IN
..................85
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................2
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 21 days with SW_IN VPD Tair
.................484
Look up table with window size of 28 days with SW_IN VPD Tair
............603
Look up table with window size of 35 days with SW_IN VPD Tair
......456
Look up table with window size of 42 days with SW_IN VPD Tair
.114
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
19
Look up table with window size of 63 days with SW_IN VPD Tair
4
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
19
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
3
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.112
Look up table with window size of 14 days with SW_IN VPD Tair
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..260
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...296
Look up table with window size of 14 days with SW_IN VPD Tair
26
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...271
Look up table with window size of 14 days with SW_IN VPD Tair
.106
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....461
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....419
Look up table with window size of 14 days with SW_IN VPD Tair
.131
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......572
Look up table with window size of 14 days with SW_IN VPD Tair
.99
Look up table with window size of 7 days with SW_IN
4
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........428
Look up table with window size of 14 days with SW_IN VPD Tair
...338
Look up table with window size of 7 days with SW_IN
42
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........503
Look up table with window size of 14 days with SW_IN VPD Tair
....428
Look up table with window size of 7 days with SW_IN
21
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
21
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........450
Look up table with window size of 14 days with SW_IN VPD Tair
.......527
Look up table with window size of 7 days with SW_IN
.76
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.112
Look up table with window size of 28 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............589
Look up table with window size of 14 days with SW_IN VPD Tair
........424
Look up table with window size of 7 days with SW_IN
...57
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...310
Look up table with window size of 28 days with SW_IN VPD Tair
12
Look up table with window size of 35 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................520
Look up table with window size of 14 days with SW_IN VPD Tair
...........546
Look up table with window size of 7 days with SW_IN
......22
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....507
Look up table with window size of 28 days with SW_IN VPD Tair
77
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................561
Look up table with window size of 14 days with SW_IN VPD Tair
..............687
Look up table with window size of 7 days with SW_IN
.......40
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......681
Look up table with window size of 28 days with SW_IN VPD Tair
39
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................407
Look up table with window size of 14 days with SW_IN VPD Tair
...................399
Look up table with window size of 7 days with SW_IN
...............80
Mean diurnal course with window size of 0 days: .
...............0
Mean diurnal course with window size of 1 days: .
...............0
Mean diurnal course with window size of 2 days: .
...............0
Look up table with window size of 21 days with SW_IN VPD Tair
...............372
Look up table with window size of 28 days with SW_IN VPD Tair
...........552
Look up table with window size of 35 days with SW_IN VPD Tair
.....288
Look up table with window size of 42 days with SW_IN VPD Tair
...161
Look up table with window size of 49 days with SW_IN VPD Tair
.91
Look up table with window size of 56 days with SW_IN VPD Tair
36
Look up table with window size of 63 days with SW_IN VPD Tair
16
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................470
Look up table with window size of 14 days with SW_IN VPD Tair
........................709
Look up table with window size of 7 days with SW_IN
.................4
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................593
Look up table with window size of 28 days with SW_IN VPD Tair
...........572
Look up table with window size of 35 days with SW_IN VPD Tair
.....307
Look up table with window size of 42 days with SW_IN VPD Tair
..161
Look up table with window size of 49 days with SW_IN VPD Tair
31
Look up table with window size of 56 days with SW_IN VPD Tair
15
Look up table with window size of 63 days with SW_IN VPD Tair
14
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
51
Look up table with window size of 14 days with SW_IN VPD Tair
14
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
74
Look up table with window size of 14 days with SW_IN VPD Tair
4
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.127
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
22
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.180
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..264
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...291
Look up table with window size of 14 days with SW_IN VPD Tair
31
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...307
Look up table with window size of 14 days with SW_IN VPD Tair
39
Look up table with window size of 7 days with SW_IN
42
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....297
Look up table with window size of 14 days with SW_IN VPD Tair
.168
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....391
Look up table with window size of 14 days with SW_IN VPD Tair
.160
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......418
Look up table with window size of 14 days with SW_IN VPD Tair
..159
Look up table with window size of 7 days with SW_IN
98
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........249
Look up table with window size of 14 days with SW_IN VPD Tair
.....347
Look up table with window size of 7 days with SW_IN
..129
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
79
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........602
Look up table with window size of 14 days with SW_IN VPD Tair
...350
Look up table with window size of 7 days with SW_IN
14
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........467
Look up table with window size of 14 days with SW_IN VPD Tair
.......520
Look up table with window size of 7 days with SW_IN
.67
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.77
Look up table with window size of 28 days with SW_IN VPD Tair
14
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
5
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............330
Look up table with window size of 14 days with SW_IN VPD Tair
..........548
Look up table with window size of 7 days with SW_IN
.....78
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....1
Look up table with window size of 21 days with SW_IN VPD Tair
....417
Look up table with window size of 28 days with SW_IN VPD Tair
24
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................434
Look up table with window size of 14 days with SW_IN VPD Tair
............575
Look up table with window size of 7 days with SW_IN
......30
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......0
Mean diurnal course with window size of 2 days: .
......1
Look up table with window size of 21 days with SW_IN VPD Tair
......549
Look up table with window size of 28 days with SW_IN VPD Tair
73
Look up table with window size of 35 days with SW_IN VPD Tair
9
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................549
Look up table with window size of 14 days with SW_IN VPD Tair
..............377
Look up table with window size of 7 days with SW_IN
..........1
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........609
Look up table with window size of 28 days with SW_IN VPD Tair
....216
Look up table with window size of 35 days with SW_IN VPD Tair
..77
Look up table with window size of 42 days with SW_IN VPD Tair
.107
Look up table with window size of 49 days with SW_IN VPD Tair
51
Look up table with window size of 56 days with SW_IN VPD Tair
17
Look up table with window size of 63 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................486
Look up table with window size of 14 days with SW_IN VPD Tair
...................416
Look up table with window size of 7 days with SW_IN
...............120
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 21 days with SW_IN VPD Tair
.............685
Look up table with window size of 28 days with SW_IN VPD Tair
......446
Look up table with window size of 35 days with SW_IN VPD Tair
..71
Look up table with window size of 42 days with SW_IN VPD Tair
.99
Look up table with window size of 49 days with SW_IN VPD Tair
48
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
5
Look up table with window size of 14 days with SW_IN
24
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................432
Look up table with window size of 14 days with SW_IN VPD Tair
........................726
Look up table with window size of 7 days with SW_IN
.................27
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................667
Look up table with window size of 28 days with SW_IN VPD Tair
..........650
Look up table with window size of 35 days with SW_IN VPD Tair
...277
Look up table with window size of 42 days with SW_IN VPD Tair
.19
Look up table with window size of 49 days with SW_IN VPD Tair
7
Look up table with window size of 56 days with SW_IN VPD Tair
7
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
8
Look up table with window size of 35 days with SW_IN
9
Look up table with window size of 42 days with SW_IN
27
Look up table with window size of 49 days with SW_IN
15
Finished gap filling of 'PA' in 8 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..220
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..260
Look up table with window size of 14 days with SW_IN VPD Tair
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...317
Look up table with window size of 14 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...362
Look up table with window size of 14 days with SW_IN VPD Tair
9
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....434
Look up table with window size of 14 days with SW_IN VPD Tair
15
Look up table with window size of 7 days with SW_IN
18
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....514
Look up table with window size of 14 days with SW_IN VPD Tair
48
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......536
Look up table with window size of 14 days with SW_IN VPD Tair
.135
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........372
Look up table with window size of 14 days with SW_IN VPD Tair
....414
Look up table with window size of 7 days with SW_IN
18
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........385
Look up table with window size of 14 days with SW_IN VPD Tair
.....305
Look up table with window size of 7 days with SW_IN
..159
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.111
Look up table with window size of 28 days with SW_IN VPD Tair
8
Look up table with window size of 35 days with SW_IN VPD Tair
4
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........481
Look up table with window size of 14 days with SW_IN VPD Tair
......509
Look up table with window size of 7 days with SW_IN
.67
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 21 days with SW_IN VPD Tair
.78
Look up table with window size of 28 days with SW_IN VPD Tair
27
Look up table with window size of 35 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............448
Look up table with window size of 14 days with SW_IN VPD Tair
.........577
Look up table with window size of 7 days with SW_IN
...3
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...286
Look up table with window size of 28 days with SW_IN VPD Tair
12
Look up table with window size of 35 days with SW_IN VPD Tair
44
Look up table with window size of 42 days with SW_IN VPD Tair
8
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
15
Look up table with window size of 21 days with SW_IN
6
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................460
Look up table with window size of 14 days with SW_IN VPD Tair
............633
Look up table with window size of 7 days with SW_IN
.....25
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 21 days with SW_IN VPD Tair
.....513
Look up table with window size of 28 days with SW_IN VPD Tair
37
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
5
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................557
Look up table with window size of 14 days with SW_IN VPD Tair
..............652
Look up table with window size of 7 days with SW_IN
.......8
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......731
Look up table with window size of 28 days with SW_IN VPD Tair
60
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................508
Look up table with window size of 14 days with SW_IN VPD Tair
..................624
Look up table with window size of 7 days with SW_IN
............61
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............1
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............549
Look up table with window size of 28 days with SW_IN VPD Tair
......355
Look up table with window size of 35 days with SW_IN VPD Tair
...100
Look up table with window size of 42 days with SW_IN VPD Tair
..54
Look up table with window size of 49 days with SW_IN VPD Tair
.45
Look up table with window size of 56 days with SW_IN VPD Tair
.24
Look up table with window size of 63 days with SW_IN VPD Tair
24
Look up table with window size of 70 days with SW_IN VPD Tair
18
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
21
Look up table with window size of 28 days with SW_IN
21
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................302
Look up table with window size of 14 days with SW_IN VPD Tair
.........................721
Look up table with window size of 7 days with SW_IN
..................9
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................775
Look up table with window size of 28 days with SW_IN VPD Tair
..........532
Look up table with window size of 35 days with SW_IN VPD Tair
.....329
Look up table with window size of 42 days with SW_IN VPD Tair
..89
Look up table with window size of 49 days with SW_IN VPD Tair
.7
Look up table with window size of 56 days with SW_IN VPD Tair
.4
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.3
Look up table with window size of 14 days with SW_IN
.4
Look up table with window size of 21 days with SW_IN
.3
Look up table with window size of 28 days with SW_IN
.18
Look up table with window size of 35 days with SW_IN
68
Look up table with window size of 42 days with SW_IN
7
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
8
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
28
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
49
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
65
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
78
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.150
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.180
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..221
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..254
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...301
Look up table with window size of 14 days with SW_IN VPD Tair
8
Look up table with window size of 7 days with SW_IN
12
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...357
Look up table with window size of 14 days with SW_IN VPD Tair
31
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....336
Look up table with window size of 14 days with SW_IN VPD Tair
.106
Look up table with window size of 7 days with SW_IN
26
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....526
Look up table with window size of 14 days with SW_IN VPD Tair
33
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......443
Look up table with window size of 14 days with SW_IN VPD Tair
..202
Look up table with window size of 7 days with SW_IN
31
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........447
Look up table with window size of 14 days with SW_IN VPD Tair
...304
Look up table with window size of 7 days with SW_IN
49
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
4
Look up table with window size of 28 days with SW_IN VPD Tair
6
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........583
Look up table with window size of 14 days with SW_IN VPD Tair
...245
Look up table with window size of 7 days with SW_IN
.38
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.104
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........343
Look up table with window size of 14 days with SW_IN VPD Tair
........556
Look up table with window size of 7 days with SW_IN
..162
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.106
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............422
Look up table with window size of 14 days with SW_IN VPD Tair
.........552
Look up table with window size of 7 days with SW_IN
....28
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...204
Look up table with window size of 28 days with SW_IN VPD Tair
.70
Look up table with window size of 35 days with SW_IN VPD Tair
.108
Look up table with window size of 42 days with SW_IN VPD Tair
5
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................451
Look up table with window size of 14 days with SW_IN VPD Tair
............441
Look up table with window size of 7 days with SW_IN
.......17
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 21 days with SW_IN VPD Tair
.......573
Look up table with window size of 28 days with SW_IN VPD Tair
.168
Look up table with window size of 35 days with SW_IN VPD Tair
23
Look up table with window size of 42 days with SW_IN VPD Tair
2
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................589
Look up table with window size of 14 days with SW_IN VPD Tair
..............417
Look up table with window size of 7 days with SW_IN
..........10
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........4
Look up table with window size of 21 days with SW_IN VPD Tair
.........786
Look up table with window size of 28 days with SW_IN VPD Tair
..163
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
38
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................356
Look up table with window size of 14 days with SW_IN VPD Tair
....................689
Look up table with window size of 7 days with SW_IN
.............189
Mean diurnal course with window size of 0 days: .
...........0
Mean diurnal course with window size of 1 days: .
...........0
Mean diurnal course with window size of 2 days: .
...........0
Look up table with window size of 21 days with SW_IN VPD Tair
...........614
Look up table with window size of 28 days with SW_IN VPD Tair
.....509
Look up table with window size of 35 days with SW_IN VPD Tair
34
Look up table with window size of 42 days with SW_IN VPD Tair
10
Look up table with window size of 49 days with SW_IN VPD Tair
3
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................487
Look up table with window size of 14 days with SW_IN VPD Tair
.......................480
Look up table with window size of 7 days with SW_IN
...................35
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................1
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 21 days with SW_IN VPD Tair
..................790
Look up table with window size of 28 days with SW_IN VPD Tair
..........652
Look up table with window size of 35 days with SW_IN VPD Tair
....265
Look up table with window size of 42 days with SW_IN VPD Tair
.83
Look up table with window size of 49 days with SW_IN VPD Tair
23
Look up table with window size of 56 days with SW_IN VPD Tair
13
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
21
Look up table with window size of 21 days with SW_IN
8
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
10
Look up table with window size of 56 days with SW_IN
5
Finished gap filling of 'PA' in 7 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
13
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
75
Look up table with window size of 14 days with SW_IN VPD Tair
2
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.147
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.182
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..258
Look up table with window size of 14 days with SW_IN VPD Tair
7
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...265
Look up table with window size of 14 days with SW_IN VPD Tair
27
Look up table with window size of 7 days with SW_IN
30
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...292
Look up table with window size of 14 days with SW_IN VPD Tair
41
Look up table with window size of 7 days with SW_IN
55
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....434
Look up table with window size of 14 days with SW_IN VPD Tair
34
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....527
Look up table with window size of 14 days with SW_IN VPD Tair
32
Look up table with window size of 7 days with SW_IN
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......549
Look up table with window size of 14 days with SW_IN VPD Tair
.61
Look up table with window size of 7 days with SW_IN
55
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........454
Look up table with window size of 14 days with SW_IN VPD Tair
...348
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........401
Look up table with window size of 14 days with SW_IN VPD Tair
.....526
Look up table with window size of 7 days with SW_IN
3
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
39
Look up table with window size of 28 days with SW_IN VPD Tair
2
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Look up table with window size of 49 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........584
Look up table with window size of 14 days with SW_IN VPD Tair
.....357
Look up table with window size of 7 days with SW_IN
..54
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 21 days with SW_IN VPD Tair
.151
Look up table with window size of 28 days with SW_IN VPD Tair
21
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............394
Look up table with window size of 14 days with SW_IN VPD Tair
..........506
Look up table with window size of 7 days with SW_IN
....21
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....461
Look up table with window size of 28 days with SW_IN VPD Tair
13
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................513
Look up table with window size of 14 days with SW_IN VPD Tair
...........710
Look up table with window size of 7 days with SW_IN
....7
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 21 days with SW_IN VPD Tair
....431
Look up table with window size of 28 days with SW_IN VPD Tair
12
Look up table with window size of 35 days with SW_IN VPD Tair
1
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................380
Look up table with window size of 14 days with SW_IN VPD Tair
................681
Look up table with window size of 7 days with SW_IN
.........47
Mean diurnal course with window size of 0 days: .
.........0
Mean diurnal course with window size of 1 days: .
.........0
Mean diurnal course with window size of 2 days: .
.........0
Look up table with window size of 21 days with SW_IN VPD Tair
.........476
Look up table with window size of 28 days with SW_IN VPD Tair
....355
Look up table with window size of 35 days with SW_IN VPD Tair
30
Look up table with window size of 42 days with SW_IN VPD Tair
33
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
1
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................566
Look up table with window size of 14 days with SW_IN VPD Tair
..................565
Look up table with window size of 7 days with SW_IN
............1
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............627
Look up table with window size of 28 days with SW_IN VPD Tair
......449
Look up table with window size of 35 days with SW_IN VPD Tair
.115
Look up table with window size of 42 days with SW_IN VPD Tair
41
Look up table with window size of 49 days with SW_IN VPD Tair
26
Look up table with window size of 56 days with SW_IN VPD Tair
11
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
1
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................547
Look up table with window size of 14 days with SW_IN VPD Tair
.......................634
Look up table with window size of 7 days with SW_IN
................6
Mean diurnal course with window size of 0 days: .
................0
Mean diurnal course with window size of 1 days: .
................0
Mean diurnal course with window size of 2 days: .
................0
Look up table with window size of 21 days with SW_IN VPD Tair
................433
Look up table with window size of 28 days with SW_IN VPD Tair
............563
Look up table with window size of 35 days with SW_IN VPD Tair
......277
Look up table with window size of 42 days with SW_IN VPD Tair
....356
Look up table with window size of 49 days with SW_IN VPD Tair
63
Finished gap filling of 'PA' in 9 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
64
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
76
Look up table with window size of 14 days with SW_IN VPD Tair
3
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.121
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.148
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.169
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
13
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..219
Look up table with window size of 14 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..247
Look up table with window size of 14 days with SW_IN VPD Tair
13
Look up table with window size of 7 days with SW_IN
7
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...263
Look up table with window size of 14 days with SW_IN VPD Tair
59
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...384
Look up table with window size of 14 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....350
Look up table with window size of 14 days with SW_IN VPD Tair
.39
Look up table with window size of 7 days with SW_IN
78
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
0
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....513
Look up table with window size of 14 days with SW_IN VPD Tair
49
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......508
Look up table with window size of 14 days with SW_IN VPD Tair
.161
Look up table with window size of 7 days with SW_IN
0
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
6
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........518
Look up table with window size of 14 days with SW_IN VPD Tair
..284
Look up table with window size of 7 days with SW_IN
7
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........408
Look up table with window size of 14 days with SW_IN VPD Tair
.....501
Look up table with window size of 7 days with SW_IN
21
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
41
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
0
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........378
Look up table with window size of 14 days with SW_IN VPD Tair
.......620
Look up table with window size of 7 days with SW_IN
.8
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 21 days with SW_IN VPD Tair
.141
Look up table with window size of 28 days with SW_IN VPD Tair
18
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............477
Look up table with window size of 14 days with SW_IN VPD Tair
.........543
Look up table with window size of 7 days with SW_IN
...27
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...278
Look up table with window size of 28 days with SW_IN VPD Tair
40
Look up table with window size of 35 days with SW_IN VPD Tair
25
Look up table with window size of 42 days with SW_IN VPD Tair
4
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................554
Look up table with window size of 14 days with SW_IN VPD Tair
...........733
Look up table with window size of 7 days with SW_IN
...40
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 21 days with SW_IN VPD Tair
...336
Look up table with window size of 28 days with SW_IN VPD Tair
13
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................438
Look up table with window size of 14 days with SW_IN VPD Tair
...............635
Look up table with window size of 7 days with SW_IN
.........60
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........3
Mean diurnal course with window size of 2 days: .
........7
Look up table with window size of 21 days with SW_IN VPD Tair
........316
Look up table with window size of 28 days with SW_IN VPD Tair
.....354
Look up table with window size of 35 days with SW_IN VPD Tair
.0
Look up table with window size of 42 days with SW_IN VPD Tair
.22
Look up table with window size of 49 days with SW_IN VPD Tair
.14
Look up table with window size of 56 days with SW_IN VPD Tair
.0
Look up table with window size of 63 days with SW_IN VPD Tair
.0
Look up table with window size of 70 days with SW_IN VPD Tair
.0
Look up table with window size of 14 days with SW_IN
.65
Look up table with window size of 21 days with SW_IN
94
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................551
Look up table with window size of 14 days with SW_IN VPD Tair
..................603
Look up table with window size of 7 days with SW_IN
............50
Mean diurnal course with window size of 0 days: .
............0
Mean diurnal course with window size of 1 days: .
............0
Mean diurnal course with window size of 2 days: .
............0
Look up table with window size of 21 days with SW_IN VPD Tair
............450
Look up table with window size of 28 days with SW_IN VPD Tair
.......389
Look up table with window size of 35 days with SW_IN VPD Tair
...113
Look up table with window size of 42 days with SW_IN VPD Tair
..176
Look up table with window size of 49 days with SW_IN VPD Tair
52
Look up table with window size of 56 days with SW_IN VPD Tair
17
Look up table with window size of 63 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................390
Look up table with window size of 14 days with SW_IN VPD Tair
........................589
Look up table with window size of 7 days with SW_IN
...................150
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................1
Look up table with window size of 21 days with SW_IN VPD Tair
.................765
Look up table with window size of 28 days with SW_IN VPD Tair
.........706
Look up table with window size of 35 days with SW_IN VPD Tair
..223
Look up table with window size of 42 days with SW_IN VPD Tair
54
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'PA' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 4 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
4
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 8 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
8
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 12 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
12
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 17 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
17
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 24 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
24
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 32 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
31
Look up table with window size of 14 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 41 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
41
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 52 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
52
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 65 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
54
Look up table with window size of 14 days with SW_IN VPD Tair
0
Look up table with window size of 7 days with SW_IN
11
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 81 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
81
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 100 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.100
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 122 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.122
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 150 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.139
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
10
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 182 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.179
Look up table with window size of 14 days with SW_IN VPD Tair
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 221 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..216
Look up table with window size of 14 days with SW_IN VPD Tair
1
Look up table with window size of 7 days with SW_IN
1
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 267 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
..159
Look up table with window size of 14 days with SW_IN VPD Tair
.28
Look up table with window size of 7 days with SW_IN
80
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 322 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...306
Look up table with window size of 14 days with SW_IN VPD Tair
14
Look up table with window size of 7 days with SW_IN
2
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 388 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...340
Look up table with window size of 14 days with SW_IN VPD Tair
48
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 468 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....387
Look up table with window size of 14 days with SW_IN VPD Tair
57
Look up table with window size of 7 days with SW_IN
22
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
1
Look up table with window size of 28 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 562 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.....394
Look up table with window size of 14 days with SW_IN VPD Tair
.152
Look up table with window size of 7 days with SW_IN
15
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
......449
Look up table with window size of 14 days with SW_IN VPD Tair
..193
Look up table with window size of 7 days with SW_IN
24
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 21 days with SW_IN VPD Tair
5
Look up table with window size of 28 days with SW_IN VPD Tair
0
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 811 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........453
Look up table with window size of 14 days with SW_IN VPD Tair
...219
Look up table with window size of 7 days with SW_IN
.101
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 21 days with SW_IN VPD Tair
34
Look up table with window size of 28 days with SW_IN VPD Tair
3
Look up table with window size of 35 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 973 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.........418
Look up table with window size of 14 days with SW_IN VPD Tair
.....307
Look up table with window size of 7 days with SW_IN
..142
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.2
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 21 days with SW_IN VPD Tair
.55
Look up table with window size of 28 days with SW_IN VPD Tair
4
Look up table with window size of 35 days with SW_IN VPD Tair
0
Look up table with window size of 42 days with SW_IN VPD Tair
13
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
2
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
4
Look up table with window size of 14 days with SW_IN
25
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1167 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
...........436
Look up table with window size of 14 days with SW_IN VPD Tair
.......532
Look up table with window size of 7 days with SW_IN
.21
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.2
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 21 days with SW_IN VPD Tair
.156
Look up table with window size of 28 days with SW_IN VPD Tair
6
Look up table with window size of 35 days with SW_IN VPD Tair
3
Look up table with window size of 42 days with SW_IN VPD Tair
3
Look up table with window size of 49 days with SW_IN VPD Tair
0
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
5
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'PA' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1399 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
.............472
Look up table with window size of 14 days with SW_IN VPD Tair
.........591
Look up table with window size of 7 days with SW_IN
...38
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 21 days with SW_IN VPD Tair
..197
Look up table with window size of 28 days with SW_IN VPD Tair
.69
Look up table with window size of 35 days with SW_IN VPD Tair
32
Finished gap filling of 'PA' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 1676 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
................515
Look up table with window size of 14 days with SW_IN VPD Tair
...........471
Look up table with window size of 7 days with SW_IN
......42
Mean diurnal course with window size of 0 days: .
......0
Mean diurnal course with window size of 1 days: .
......4
Mean diurnal course with window size of 2 days: .
......0
Look up table with window size of 21 days with SW_IN VPD Tair
......451
Look up table with window size of 28 days with SW_IN VPD Tair
.146
Look up table with window size of 35 days with SW_IN VPD Tair
32
Look up table with window size of 42 days with SW_IN VPD Tair
12
Look up table with window size of 49 days with SW_IN VPD Tair
2
Look up table with window size of 56 days with SW_IN VPD Tair
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2008 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
....................337
Look up table with window size of 14 days with SW_IN VPD Tair
................531
Look up table with window size of 7 days with SW_IN
...........119
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 21 days with SW_IN VPD Tair
..........280
Look up table with window size of 28 days with SW_IN VPD Tair
.......429
Look up table with window size of 35 days with SW_IN VPD Tair
...291
Look up table with window size of 42 days with SW_IN VPD Tair
6
Look up table with window size of 49 days with SW_IN VPD Tair
4
Look up table with window size of 56 days with SW_IN VPD Tair
4
Look up table with window size of 63 days with SW_IN VPD Tair
0
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
2
Mean diurnal course with window size of 21 days: .
2
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2405 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
........................487
Look up table with window size of 14 days with SW_IN VPD Tair
...................475
Look up table with window size of 7 days with SW_IN
..............0
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 21 days with SW_IN VPD Tair
..............652
Look up table with window size of 28 days with SW_IN VPD Tair
.......326
Look up table with window size of 35 days with SW_IN VPD Tair
....336
Look up table with window size of 42 days with SW_IN VPD Tair
.98
Look up table with window size of 49 days with SW_IN VPD Tair
6
Look up table with window size of 56 days with SW_IN VPD Tair
0
Look up table with window size of 63 days with SW_IN VPD Tair
2
Look up table with window size of 70 days with SW_IN VPD Tair
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
15
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
4
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'PA' with 2879 real gaps for gap filling.
Full MDS algorithm for gap filling of 'PA.gap_0' with LUT(SW_IN, VPD, Tair) and MDC.
Look up table with window size of 7 days with SW_IN VPD Tair
............................467
Look up table with window size of 14 days with SW_IN VPD Tair
........................636
Look up table with window size of 7 days with SW_IN
.................28
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................1
Look up table with window size of 21 days with SW_IN VPD Tair
.................581
Look up table with window size of 28 days with SW_IN VPD Tair
...........679
Look up table with window size of 35 days with SW_IN VPD Tair
....281
Look up table with window size of 42 days with SW_IN VPD Tair
..83
Look up table with window size of 49 days with SW_IN VPD Tair
.41
Look up table with window size of 56 days with SW_IN VPD Tair
31
Look up table with window size of 63 days with SW_IN VPD Tair
9
Look up table with window size of 70 days with SW_IN VPD Tair
2
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
10
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
18
Look up table with window size of 42 days with SW_IN
7
Finished gap filling of 'PA' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
# A tibble: 30 × 5
   gap_length  mean    sd error_high error_low
        <int> <dbl> <dbl>      <dbl>     <dbl>
 1          1 0.470 0.392      0.861    0.0781
 2          4 0.427 0.388      0.815    0.0394
 3          8 0.447 0.320      0.767    0.126 
 4         12 0.522 0.356      0.879    0.166 
 5         17 0.518 0.387      0.905    0.131 
 6         24 0.469 0.350      0.820    0.119 
 7         32 0.574 0.408      0.982    0.167 
 8         41 0.529 0.311      0.840    0.219 
 9         52 0.551 0.325      0.875    0.226 
10         65 0.510 0.315      0.825    0.195 
# … with 20 more rows
```

```r
PA_rmse_stat %>%
  mutate(gap_length = gap_length / 2) %>%
  ggplot(aes(gap_length)) +
  geom_ribbon(aes(ymin = error_low, ymax = error_high), alpha = .7) +
  geom_line(aes(y=mean)) +
  labs(x = "Gap Lengths [hours]", y = "RMSE [Pa]")
```

<img src="figure/MDS_gap_filling_quality.rmd/unnamed-chunk-17-1.png" width="672" style="display: block; margin: auto;" />

VPD

knit_template("analysis/fragments/variable_assess_gapfilling.rmd", var = "VPD", unit="Pa")

```r
cache_rds({
  # go up to 60 days which is the maximium gap is going to be filled
    # 1.1 is needed because for some unknown reasons, when converting to interger 1 becomes 0 (maybe some floating point related issue)
    gaps_lengths <-  seq_log(1.1, 24 * 2 * 30 * 2 , offset = 15, length.out = 30) %>%
            rep(n_rep) %>%
            as.integer()

    VPD_rmse <- gaps_lengths %>%
            split_vector(n_workers) %>%
            future_map_dfr(~gap_fill_EProc_rmse(hai, "VPD", .x))

    VPD_rmse_stat <- VPD_rmse %>%
      group_by(gap_length) %>%
      summarise(mean = mean(rmse), sd = sd(rmse)) %>%
        mutate(error_high = mean + sd, error_low = mean - sd)
})
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'VPD' with 1 real gaps for gap filling.
```

```
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
```

```
Look up table with window size of 7 days with SW_IN
```

```
1
```

```
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'VPD' with 4 real gaps for gap filling.
```

```
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
```

```
Look up table with window size of 7 days with SW_IN
```

```
4
```

```
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'VPD' with 8 real gaps for gap filling.
```

```
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
```

```
Look up table with window size of 7 days with SW_IN
```

```
8
```

```
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'VPD' with 12 real gaps for gap filling.
```

```
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
```

```
Look up table with window size of 7 days with SW_IN
```

```
12
```

```
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'VPD' with 17 real gaps for gap filling.
```

```
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
```

```
Look up table with window size of 7 days with SW_IN
```

```
17
```

```
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'VPD' with 24 real gaps for gap filling.
```

```
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
```

```
Look up table with window size of 7 days with SW_IN
```

```
24
```

```
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'VPD' with 32 real gaps for gap filling.
```

```
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
```

```
Look up table with window size of 7 days with SW_IN
```

```
32
```

```
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'VPD' with 41 real gaps for gap filling.
```

```
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
```

```
Look up table with window size of 7 days with SW_IN
```

```
41
```

```
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'VPD' with 52 real gaps for gap filling.
```

```
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
```

```
Look up table with window size of 7 days with SW_IN
```

```
52
```

```
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'VPD' with 65 real gaps for gap filling.
```

```
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
```

```
Look up table with window size of 7 days with SW_IN
```

```
65
```

```
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'VPD' with 81 real gaps for gap filling.
```

```
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
```

```
Look up table with window size of 7 days with SW_IN
```

```
81
```

```
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
```

```
New sEddyProc class for site 'ID'
```

```
Initialized variable 'VPD' with 100 real gaps for gap filling.
```

```
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
```

```
Look up table with window size of 7 days with SW_IN
```

```
.95
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.180
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...368
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Mean diurnal course with window size of 2 days: .
8
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....465
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....530
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Mean diurnal course with window size of 2 days: .
10
Look up table with window size of 14 days with SW_IN
16
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......641
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
35
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........658
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.153
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........588
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...9
Mean diurnal course with window size of 2 days: .
...9
Look up table with window size of 14 days with SW_IN
...356
Look up table with window size of 21 days with SW_IN
11
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........647
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....519
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............634
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......672
Look up table with window size of 21 days with SW_IN
92
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................666
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........671
Look up table with window size of 21 days with SW_IN
...339
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................661
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............2
Look up table with window size of 14 days with SW_IN
.............664
Look up table with window size of 21 days with SW_IN
......666
Look up table with window size of 28 days with SW_IN
15
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................638
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................1
Look up table with window size of 14 days with SW_IN
.................653
Look up table with window size of 21 days with SW_IN
...........667
Look up table with window size of 28 days with SW_IN
....398
Look up table with window size of 35 days with SW_IN
22
Look up table with window size of 42 days with SW_IN
24
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................639
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................669
Look up table with window size of 21 days with SW_IN
...............634
Look up table with window size of 28 days with SW_IN
.........666
Look up table with window size of 35 days with SW_IN
..221
Look up table with window size of 42 days with SW_IN
22
Look up table with window size of 49 days with SW_IN
22
Look up table with window size of 56 days with SW_IN
6
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..220
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...386
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....558
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......628
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
48
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........627
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.184
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........620
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...352
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........647
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....1
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....506
Look up table with window size of 21 days with SW_IN
13
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............600
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......703
Look up table with window size of 21 days with SW_IN
95
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................628
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........695
Look up table with window size of 21 days with SW_IN
...351
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................619
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 14 days with SW_IN
.............669
Look up table with window size of 21 days with SW_IN
.......682
Look up table with window size of 28 days with SW_IN
32
Look up table with window size of 35 days with SW_IN
5
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................668
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................670
Look up table with window size of 21 days with SW_IN
..........664
Look up table with window size of 28 days with SW_IN
....400
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................634
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................683
Look up table with window size of 21 days with SW_IN
...............682
Look up table with window size of 28 days with SW_IN
........670
Look up table with window size of 35 days with SW_IN
..210
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
11
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.181
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...380
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....555
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......636
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
38
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........669
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.142
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........628
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...1
Mean diurnal course with window size of 2 days: .
...2
Look up table with window size of 14 days with SW_IN
...336
Look up table with window size of 21 days with SW_IN
6
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........620
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....5
Mean diurnal course with window size of 2 days: .
.....5
Look up table with window size of 14 days with SW_IN
.....511
Look up table with window size of 21 days with SW_IN
23
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............655
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......661
Look up table with window size of 21 days with SW_IN
79
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................640
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........665
Look up table with window size of 21 days with SW_IN
...362
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................657
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............1
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............670
Look up table with window size of 21 days with SW_IN
......656
Look up table with window size of 28 days with SW_IN
17
Look up table with window size of 35 days with SW_IN
6
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................638
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................664
Look up table with window size of 21 days with SW_IN
...........672
Look up table with window size of 28 days with SW_IN
....430
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................651
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................663
Look up table with window size of 21 days with SW_IN
...............656
Look up table with window size of 28 days with SW_IN
.........667
Look up table with window size of 35 days with SW_IN
..230
Look up table with window size of 42 days with SW_IN
6
Look up table with window size of 49 days with SW_IN
5
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....557
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......652
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........639
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.171
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........583
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...4
Look up table with window size of 14 days with SW_IN
...383
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........605
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....1
Look up table with window size of 14 days with SW_IN
.....551
Look up table with window size of 21 days with SW_IN
8
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............631
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......666
Look up table with window size of 21 days with SW_IN
.102
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................618
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........651
Look up table with window size of 21 days with SW_IN
....386
Look up table with window size of 28 days with SW_IN
20
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................636
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............674
Look up table with window size of 21 days with SW_IN
......665
Look up table with window size of 28 days with SW_IN
29
Look up table with window size of 35 days with SW_IN
4
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................650
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................656
Look up table with window size of 21 days with SW_IN
..........676
Look up table with window size of 28 days with SW_IN
....412
Look up table with window size of 35 days with SW_IN
11
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................666
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................651
Look up table with window size of 21 days with SW_IN
...............647
Look up table with window size of 28 days with SW_IN
.........650
Look up table with window size of 35 days with SW_IN
..204
Look up table with window size of 42 days with SW_IN
27
Look up table with window size of 49 days with SW_IN
32
Look up table with window size of 56 days with SW_IN
2
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.149
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..266
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....462
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....516
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 14 days with SW_IN
36
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......637
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
38
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........633
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.2
Look up table with window size of 14 days with SW_IN
.170
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........662
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...311
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........620
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....3
Look up table with window size of 14 days with SW_IN
.....511
Look up table with window size of 21 days with SW_IN
32
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............659
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......662
Look up table with window size of 21 days with SW_IN
77
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................664
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........651
Look up table with window size of 21 days with SW_IN
...345
Look up table with window size of 28 days with SW_IN
15
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................619
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............5
Look up table with window size of 14 days with SW_IN
.............670
Look up table with window size of 21 days with SW_IN
.......690
Look up table with window size of 28 days with SW_IN
24
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................634
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................2
Look up table with window size of 14 days with SW_IN
.................679
Look up table with window size of 21 days with SW_IN
..........642
Look up table with window size of 28 days with SW_IN
....439
Look up table with window size of 35 days with SW_IN
9
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................661
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................674
Look up table with window size of 21 days with SW_IN
...............673
Look up table with window size of 28 days with SW_IN
........666
Look up table with window size of 35 days with SW_IN
..204
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...384
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....464
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....561
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......665
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
10
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........641
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.170
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........645
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...328
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........600
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....4
Look up table with window size of 14 days with SW_IN
.....545
Look up table with window size of 21 days with SW_IN
18
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............637
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......1
Look up table with window size of 14 days with SW_IN
.......666
Look up table with window size of 21 days with SW_IN
95
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................618
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........673
Look up table with window size of 21 days with SW_IN
...379
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................653
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............656
Look up table with window size of 21 days with SW_IN
......665
Look up table with window size of 28 days with SW_IN
30
Look up table with window size of 35 days with SW_IN
4
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................616
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................1
Mean diurnal course with window size of 2 days: .
.................10
Look up table with window size of 14 days with SW_IN
.................681
Look up table with window size of 21 days with SW_IN
..........655
Look up table with window size of 28 days with SW_IN
....408
Look up table with window size of 35 days with SW_IN
25
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
9
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................554
Mean diurnal course with window size of 0 days: .
.......................0
Mean diurnal course with window size of 1 days: .
.......................3
Mean diurnal course with window size of 2 days: .
.......................6
Look up table with window size of 14 days with SW_IN
.......................675
Look up table with window size of 21 days with SW_IN
................675
Look up table with window size of 28 days with SW_IN
.........685
Look up table with window size of 35 days with SW_IN
..246
Look up table with window size of 42 days with SW_IN
26
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
4
Look up table with window size of 70 days with SW_IN
2
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..219
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......630
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
46
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........630
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.5
Mean diurnal course with window size of 2 days: .
.3
Look up table with window size of 14 days with SW_IN
.165
Look up table with window size of 21 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........666
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...307
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........619
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....545
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............656
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......677
Look up table with window size of 21 days with SW_IN
61
Look up table with window size of 28 days with SW_IN
5
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................651
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........4
Look up table with window size of 14 days with SW_IN
..........667
Look up table with window size of 21 days with SW_IN
...352
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................601
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............8
Look up table with window size of 14 days with SW_IN
.............641
Look up table with window size of 21 days with SW_IN
.......685
Look up table with window size of 28 days with SW_IN
67
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
2
Mean diurnal course with window size of 21 days: .
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................581
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................8
Look up table with window size of 14 days with SW_IN
..................661
Look up table with window size of 21 days with SW_IN
...........659
Look up table with window size of 28 days with SW_IN
....443
Look up table with window size of 35 days with SW_IN
27
Look up table with window size of 42 days with SW_IN
20
Look up table with window size of 49 days with SW_IN
6
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................652
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................651
Look up table with window size of 21 days with SW_IN
...............651
Look up table with window size of 28 days with SW_IN
.........668
Look up table with window size of 35 days with SW_IN
..218
Look up table with window size of 42 days with SW_IN
7
Look up table with window size of 49 days with SW_IN
24
Look up table with window size of 56 days with SW_IN
8
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
64
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.121
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...384
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....465
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....533
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
27
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......650
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
26
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........635
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.175
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........650
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...1
Look up table with window size of 14 days with SW_IN
...321
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........583
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....1
Mean diurnal course with window size of 2 days: .
.....6
Look up table with window size of 14 days with SW_IN
.....489
Look up table with window size of 21 days with SW_IN
88
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............627
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......2
Look up table with window size of 14 days with SW_IN
.......686
Look up table with window size of 21 days with SW_IN
82
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................613
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........715
Look up table with window size of 21 days with SW_IN
...344
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................650
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............6
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............678
Look up table with window size of 21 days with SW_IN
......647
Look up table with window size of 28 days with SW_IN
26
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................612
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................3
Mean diurnal course with window size of 2 days: .
.................5
Look up table with window size of 14 days with SW_IN
.................651
Look up table with window size of 21 days with SW_IN
...........684
Look up table with window size of 28 days with SW_IN
....407
Look up table with window size of 35 days with SW_IN
31
Look up table with window size of 42 days with SW_IN
7
Look up table with window size of 49 days with SW_IN
5
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................645
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................671
Look up table with window size of 21 days with SW_IN
...............651
Look up table with window size of 28 days with SW_IN
.........660
Look up table with window size of 35 days with SW_IN
..232
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
19
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
80
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....466
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......619
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
55
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........635
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 14 days with SW_IN
.173
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........643
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...323
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........578
Mean diurnal course with window size of 0 days: .
.....1
Mean diurnal course with window size of 1 days: .
.....1
Mean diurnal course with window size of 2 days: .
.....3
Look up table with window size of 14 days with SW_IN
.....544
Look up table with window size of 21 days with SW_IN
27
Look up table with window size of 28 days with SW_IN
13
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............639
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......676
Look up table with window size of 21 days with SW_IN
84
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................646
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........691
Look up table with window size of 21 days with SW_IN
...339
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................665
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............671
Look up table with window size of 21 days with SW_IN
......666
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................665
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................676
Look up table with window size of 21 days with SW_IN
..........669
Look up table with window size of 28 days with SW_IN
...395
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................666
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................670
Look up table with window size of 21 days with SW_IN
...............666
Look up table with window size of 28 days with SW_IN
........672
Look up table with window size of 35 days with SW_IN
..197
Look up table with window size of 42 days with SW_IN
6
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....464
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....560
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......664
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........644
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.167
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........639
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...329
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........603
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....1
Look up table with window size of 14 days with SW_IN
.....549
Look up table with window size of 21 days with SW_IN
14
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............636
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......680
Look up table with window size of 21 days with SW_IN
83
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................661
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........645
Look up table with window size of 21 days with SW_IN
...363
Look up table with window size of 28 days with SW_IN
7
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................631
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............11
Look up table with window size of 14 days with SW_IN
.............658
Look up table with window size of 21 days with SW_IN
.......648
Look up table with window size of 28 days with SW_IN
34
Look up table with window size of 35 days with SW_IN
15
Look up table with window size of 42 days with SW_IN
11
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................666
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................666
Look up table with window size of 21 days with SW_IN
..........664
Look up table with window size of 28 days with SW_IN
....409
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................642
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................658
Look up table with window size of 21 days with SW_IN
...............690
Look up table with window size of 28 days with SW_IN
........662
Look up table with window size of 35 days with SW_IN
..224
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.121
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..220
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..266
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...380
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....465
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....553
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
9
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......641
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
34
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........669
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.142
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........634
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...338
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........626
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....538
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............644
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......3
Look up table with window size of 14 days with SW_IN
.......675
Look up table with window size of 21 days with SW_IN
75
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................663
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........652
Look up table with window size of 21 days with SW_IN
...349
Look up table with window size of 28 days with SW_IN
12
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................653
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............666
Look up table with window size of 21 days with SW_IN
......640
Look up table with window size of 28 days with SW_IN
48
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................621
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................2
Look up table with window size of 14 days with SW_IN
.................706
Look up table with window size of 21 days with SW_IN
..........621
Look up table with window size of 28 days with SW_IN
....432
Look up table with window size of 35 days with SW_IN
9
Look up table with window size of 42 days with SW_IN
9
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
3
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................656
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................671
Look up table with window size of 21 days with SW_IN
...............656
Look up table with window size of 28 days with SW_IN
........654
Look up table with window size of 35 days with SW_IN
..220
Look up table with window size of 42 days with SW_IN
12
Look up table with window size of 49 days with SW_IN
10
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...377
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....467
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......648
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
28
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........629
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........629
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...2
Look up table with window size of 14 days with SW_IN
...342
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........660
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....507
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............633
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......678
Look up table with window size of 21 days with SW_IN
86
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................651
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........1
Look up table with window size of 14 days with SW_IN
..........665
Look up table with window size of 21 days with SW_IN
...355
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................651
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 14 days with SW_IN
.............684
Look up table with window size of 21 days with SW_IN
......645
Look up table with window size of 28 days with SW_IN
26
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................614
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................712
Look up table with window size of 21 days with SW_IN
..........649
Look up table with window size of 28 days with SW_IN
....414
Look up table with window size of 35 days with SW_IN
11
Look up table with window size of 42 days with SW_IN
5
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................668
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................1
Mean diurnal course with window size of 2 days: .
......................1
Look up table with window size of 14 days with SW_IN
......................654
Look up table with window size of 21 days with SW_IN
...............678
Look up table with window size of 28 days with SW_IN
........652
Look up table with window size of 35 days with SW_IN
..224
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....460
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....558
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......638
Mean diurnal course with window size of 0 days: .
1
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
37
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........629
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.180
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........666
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...3
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...301
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........663
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....504
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............645
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......678
Look up table with window size of 21 days with SW_IN
76
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................659
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........675
Look up table with window size of 21 days with SW_IN
...337
Look up table with window size of 28 days with SW_IN
5
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................659
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............680
Look up table with window size of 21 days with SW_IN
......658
Look up table with window size of 28 days with SW_IN
11
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................644
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................660
Look up table with window size of 21 days with SW_IN
...........655
Look up table with window size of 28 days with SW_IN
....415
Look up table with window size of 35 days with SW_IN
22
Look up table with window size of 42 days with SW_IN
9
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................635
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................661
Look up table with window size of 21 days with SW_IN
...............681
Look up table with window size of 28 days with SW_IN
.........658
Look up table with window size of 35 days with SW_IN
..230
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
7
Look up table with window size of 56 days with SW_IN
3
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...387
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....561
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......641
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........649
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 14 days with SW_IN
.161
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........637
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...334
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........670
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 14 days with SW_IN
....497
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............652
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......656
Look up table with window size of 21 days with SW_IN
89
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................646
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........646
Look up table with window size of 21 days with SW_IN
...359
Look up table with window size of 28 days with SW_IN
22
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................604
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 14 days with SW_IN
..............663
Look up table with window size of 21 days with SW_IN
.......673
Look up table with window size of 28 days with SW_IN
29
Look up table with window size of 35 days with SW_IN
39
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................642
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................662
Look up table with window size of 21 days with SW_IN
...........682
Look up table with window size of 28 days with SW_IN
....414
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................632
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................674
Look up table with window size of 21 days with SW_IN
...............661
Look up table with window size of 28 days with SW_IN
.........668
Look up table with window size of 35 days with SW_IN
..238
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
3
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....466
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....555
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......575
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.101
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........645
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.166
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........647
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...326
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........647
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....506
Look up table with window size of 21 days with SW_IN
14
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............653
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......674
Look up table with window size of 21 days with SW_IN
72
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................638
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........667
Look up table with window size of 21 days with SW_IN
...369
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................664
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............670
Look up table with window size of 21 days with SW_IN
......670
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................657
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................672
Look up table with window size of 21 days with SW_IN
..........671
Look up table with window size of 28 days with SW_IN
....401
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................615
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................4
Mean diurnal course with window size of 2 days: .
......................1
Look up table with window size of 14 days with SW_IN
......................669
Look up table with window size of 21 days with SW_IN
...............668
Look up table with window size of 28 days with SW_IN
.........640
Look up table with window size of 35 days with SW_IN
..262
Look up table with window size of 42 days with SW_IN
13
Look up table with window size of 49 days with SW_IN
3
Look up table with window size of 56 days with SW_IN
4
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.181
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....452
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....559
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......620
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
54
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........615
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.195
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........654
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...319
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........629
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....3
Look up table with window size of 14 days with SW_IN
.....513
Look up table with window size of 21 days with SW_IN
15
Look up table with window size of 28 days with SW_IN
7
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............632
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......644
Look up table with window size of 21 days with SW_IN
.123
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................626
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........672
Look up table with window size of 21 days with SW_IN
...377
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................659
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 14 days with SW_IN
.............655
Look up table with window size of 21 days with SW_IN
......671
Look up table with window size of 28 days with SW_IN
22
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................601
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................3
Mean diurnal course with window size of 2 days: .
..................4
Look up table with window size of 14 days with SW_IN
.................664
Look up table with window size of 21 days with SW_IN
...........669
Look up table with window size of 28 days with SW_IN
....425
Look up table with window size of 35 days with SW_IN
23
Look up table with window size of 42 days with SW_IN
11
Look up table with window size of 49 days with SW_IN
5
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................632
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................686
Look up table with window size of 21 days with SW_IN
...............622
Look up table with window size of 28 days with SW_IN
.........680
Look up table with window size of 35 days with SW_IN
..211
Look up table with window size of 42 days with SW_IN
18
Look up table with window size of 49 days with SW_IN
24
Look up table with window size of 56 days with SW_IN
6
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..266
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....543
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
18
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......606
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
70
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........643
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.168
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........598
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...9
Look up table with window size of 14 days with SW_IN
...365
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........619
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....539
Look up table with window size of 21 days with SW_IN
7
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............646
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......1
Look up table with window size of 14 days with SW_IN
.......662
Look up table with window size of 21 days with SW_IN
90
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................625
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........675
Look up table with window size of 21 days with SW_IN
...370
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................647
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............672
Look up table with window size of 21 days with SW_IN
......657
Look up table with window size of 28 days with SW_IN
32
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................617
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................682
Look up table with window size of 21 days with SW_IN
...........638
Look up table with window size of 28 days with SW_IN
....409
Look up table with window size of 35 days with SW_IN
35
Look up table with window size of 42 days with SW_IN
19
Look up table with window size of 49 days with SW_IN
5
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................633
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................2
Mean diurnal course with window size of 2 days: .
......................1
Look up table with window size of 14 days with SW_IN
......................670
Look up table with window size of 21 days with SW_IN
...............672
Look up table with window size of 28 days with SW_IN
.........669
Look up table with window size of 35 days with SW_IN
..218
Look up table with window size of 42 days with SW_IN
7
Look up table with window size of 49 days with SW_IN
3
Look up table with window size of 56 days with SW_IN
4
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..219
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..263
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....557
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......635
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
38
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........658
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.153
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........628
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...1
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...343
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........648
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....516
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............644
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......667
Look up table with window size of 21 days with SW_IN
74
Look up table with window size of 28 days with SW_IN
14
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................657
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........671
Look up table with window size of 21 days with SW_IN
...348
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................652
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............687
Look up table with window size of 21 days with SW_IN
......649
Look up table with window size of 28 days with SW_IN
19
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................637
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................676
Look up table with window size of 21 days with SW_IN
..........672
Look up table with window size of 28 days with SW_IN
....415
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
3
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................637
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................663
Look up table with window size of 21 days with SW_IN
...............659
Look up table with window size of 28 days with SW_IN
.........665
Look up table with window size of 35 days with SW_IN
..236
Look up table with window size of 42 days with SW_IN
9
Look up table with window size of 49 days with SW_IN
8
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
2
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...316
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...387
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....553
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
9
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......640
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
36
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........644
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.167
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........647
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...325
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........655
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....512
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............625
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......1
Mean diurnal course with window size of 2 days: .
.......2
Look up table with window size of 14 days with SW_IN
.......661
Look up table with window size of 21 days with SW_IN
.110
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................644
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........5
Mean diurnal course with window size of 2 days: .
..........4
Look up table with window size of 14 days with SW_IN
..........656
Look up table with window size of 21 days with SW_IN
...352
Look up table with window size of 28 days with SW_IN
9
Look up table with window size of 35 days with SW_IN
6
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................649
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............644
Look up table with window size of 21 days with SW_IN
.......649
Look up table with window size of 28 days with SW_IN
47
Look up table with window size of 35 days with SW_IN
19
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................646
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................658
Look up table with window size of 21 days with SW_IN
...........662
Look up table with window size of 28 days with SW_IN
....434
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................654
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................658
Look up table with window size of 21 days with SW_IN
...............673
Look up table with window size of 28 days with SW_IN
........665
Look up table with window size of 35 days with SW_IN
..227
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.120
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...387
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......621
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
46
Look up table with window size of 21 days with SW_IN
9
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........643
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.168
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........643
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...327
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........636
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....529
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............652
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......670
Look up table with window size of 21 days with SW_IN
76
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................642
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........692
Look up table with window size of 21 days with SW_IN
...342
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................645
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............646
Look up table with window size of 21 days with SW_IN
.......672
Look up table with window size of 28 days with SW_IN
38
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................627
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................667
Look up table with window size of 21 days with SW_IN
...........670
Look up table with window size of 28 days with SW_IN
....414
Look up table with window size of 35 days with SW_IN
19
Look up table with window size of 42 days with SW_IN
7
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................644
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................3
Look up table with window size of 14 days with SW_IN
......................647
Look up table with window size of 21 days with SW_IN
...............624
Look up table with window size of 28 days with SW_IN
.........668
Look up table with window size of 35 days with SW_IN
..217
Look up table with window size of 42 days with SW_IN
13
Look up table with window size of 49 days with SW_IN
44
Look up table with window size of 56 days with SW_IN
19
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..220
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....463
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....561
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......645
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
31
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........635
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.2
Look up table with window size of 14 days with SW_IN
.174
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........640
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...332
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........644
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....522
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............640
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......1
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......638
Look up table with window size of 21 days with SW_IN
.114
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................614
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........4
Mean diurnal course with window size of 2 days: .
..........1
Look up table with window size of 14 days with SW_IN
..........665
Look up table with window size of 21 days with SW_IN
...361
Look up table with window size of 28 days with SW_IN
17
Look up table with window size of 35 days with SW_IN
10
Look up table with window size of 42 days with SW_IN
4
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................658
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............673
Look up table with window size of 21 days with SW_IN
......643
Look up table with window size of 28 days with SW_IN
32
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................636
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................677
Look up table with window size of 21 days with SW_IN
..........675
Look up table with window size of 28 days with SW_IN
....412
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
3
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................659
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................678
Look up table with window size of 21 days with SW_IN
...............676
Look up table with window size of 28 days with SW_IN
........672
Look up table with window size of 35 days with SW_IN
.194
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...382
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....466
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....561
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......638
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
38
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........606
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 14 days with SW_IN
..204
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........656
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...2
Look up table with window size of 14 days with SW_IN
...315
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........652
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....6
Look up table with window size of 14 days with SW_IN
.....498
Look up table with window size of 21 days with SW_IN
11
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............656
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......636
Look up table with window size of 21 days with SW_IN
.102
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................600
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........661
Look up table with window size of 21 days with SW_IN
....404
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
5
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................653
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 14 days with SW_IN
.............670
Look up table with window size of 21 days with SW_IN
......673
Look up table with window size of 28 days with SW_IN
10
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................620
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................662
Look up table with window size of 21 days with SW_IN
...........648
Look up table with window size of 28 days with SW_IN
....420
Look up table with window size of 35 days with SW_IN
21
Look up table with window size of 42 days with SW_IN
15
Look up table with window size of 49 days with SW_IN
19
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................641
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................2
Look up table with window size of 14 days with SW_IN
......................663
Look up table with window size of 21 days with SW_IN
...............649
Look up table with window size of 28 days with SW_IN
.........690
Look up table with window size of 35 days with SW_IN
..221
Look up table with window size of 42 days with SW_IN
4
Look up table with window size of 49 days with SW_IN
5
Look up table with window size of 56 days with SW_IN
3
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.181
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..215
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..264
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...386
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....466
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....560
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......639
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
37
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........661
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........627
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...6
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...340
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........650
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....515
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............657
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......660
Look up table with window size of 21 days with SW_IN
82
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................652
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........672
Look up table with window size of 21 days with SW_IN
...348
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
4
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................647
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............685
Look up table with window size of 21 days with SW_IN
......633
Look up table with window size of 28 days with SW_IN
40
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................657
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................678
Look up table with window size of 21 days with SW_IN
..........663
Look up table with window size of 28 days with SW_IN
....400
Look up table with window size of 35 days with SW_IN
7
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................629
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................664
Look up table with window size of 21 days with SW_IN
...............686
Look up table with window size of 28 days with SW_IN
.........644
Look up table with window size of 35 days with SW_IN
..239
Look up table with window size of 42 days with SW_IN
9
Look up table with window size of 49 days with SW_IN
5
Look up table with window size of 56 days with SW_IN
3
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
75
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....560
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......663
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
13
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........622
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.10
Look up table with window size of 14 days with SW_IN
.177
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........657
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...308
Look up table with window size of 21 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........662
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....501
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............653
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......3
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......630
Look up table with window size of 21 days with SW_IN
.106
Look up table with window size of 28 days with SW_IN
7
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................650
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........642
Look up table with window size of 21 days with SW_IN
...370
Look up table with window size of 28 days with SW_IN
14
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................629
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 14 days with SW_IN
.............671
Look up table with window size of 21 days with SW_IN
.......650
Look up table with window size of 28 days with SW_IN
52
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
4
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................624
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................679
Look up table with window size of 21 days with SW_IN
...........686
Look up table with window size of 28 days with SW_IN
....407
Look up table with window size of 35 days with SW_IN
9
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................636
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................1
Look up table with window size of 14 days with SW_IN
......................663
Look up table with window size of 21 days with SW_IN
...............679
Look up table with window size of 28 days with SW_IN
.........673
Look up table with window size of 35 days with SW_IN
..224
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
0
Mean diurnal course with window size of 28 days: .
1
Mean diurnal course with window size of 35 days: .
1
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..259
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...387
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....561
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......646
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
30
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........636
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.174
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........628
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...344
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........636
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....529
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............663
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......657
Look up table with window size of 21 days with SW_IN
77
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................664
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........662
Look up table with window size of 21 days with SW_IN
...347
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................666
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............644
Look up table with window size of 21 days with SW_IN
......627
Look up table with window size of 28 days with SW_IN
71
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................662
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................673
Look up table with window size of 21 days with SW_IN
..........658
Look up table with window size of 28 days with SW_IN
....403
Look up table with window size of 35 days with SW_IN
9
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................661
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................664
Look up table with window size of 21 days with SW_IN
...............667
Look up table with window size of 28 days with SW_IN
........659
Look up table with window size of 35 days with SW_IN
..214
Look up table with window size of 42 days with SW_IN
11
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...319
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...387
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....559
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......645
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
31
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........629
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 14 days with SW_IN
.180
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........632
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...341
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........648
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....508
Look up table with window size of 21 days with SW_IN
10
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............631
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......692
Look up table with window size of 21 days with SW_IN
76
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................612
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........660
Look up table with window size of 21 days with SW_IN
....399
Look up table with window size of 28 days with SW_IN
5
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................644
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............676
Look up table with window size of 21 days with SW_IN
......665
Look up table with window size of 28 days with SW_IN
21
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................652
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................687
Look up table with window size of 21 days with SW_IN
..........652
Look up table with window size of 28 days with SW_IN
....409
Look up table with window size of 35 days with SW_IN
5
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................664
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................667
Look up table with window size of 21 days with SW_IN
...............674
Look up table with window size of 28 days with SW_IN
........676
Look up table with window size of 35 days with SW_IN
.198
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...379
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....462
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....561
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......649
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
27
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........602
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 14 days with SW_IN
..209
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........644
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...328
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........641
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....526
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............639
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......686
Look up table with window size of 21 days with SW_IN
70
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................647
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........675
Look up table with window size of 21 days with SW_IN
...351
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................639
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 14 days with SW_IN
.............680
Look up table with window size of 21 days with SW_IN
......644
Look up table with window size of 28 days with SW_IN
41
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................583
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................1
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 14 days with SW_IN
..................669
Look up table with window size of 21 days with SW_IN
...........686
Look up table with window size of 28 days with SW_IN
....450
Look up table with window size of 35 days with SW_IN
13
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................638
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................651
Look up table with window size of 21 days with SW_IN
...............664
Look up table with window size of 28 days with SW_IN
.........672
Look up table with window size of 35 days with SW_IN
..230
Look up table with window size of 42 days with SW_IN
13
Look up table with window size of 49 days with SW_IN
4
Look up table with window size of 56 days with SW_IN
7
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...387
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....467
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....552
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
8
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......628
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
36
Look up table with window size of 21 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........664
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.145
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........643
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...329
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........638
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....528
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............656
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......670
Look up table with window size of 21 days with SW_IN
73
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................635
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........662
Look up table with window size of 21 days with SW_IN
...371
Look up table with window size of 28 days with SW_IN
8
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................634
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............644
Look up table with window size of 21 days with SW_IN
.......682
Look up table with window size of 28 days with SW_IN
47
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................604
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................1
Mean diurnal course with window size of 2 days: .
..................4
Look up table with window size of 14 days with SW_IN
.................668
Look up table with window size of 21 days with SW_IN
...........708
Look up table with window size of 28 days with SW_IN
....396
Look up table with window size of 35 days with SW_IN
11
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
8
Look up table with window size of 56 days with SW_IN
4
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................655
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................662
Look up table with window size of 21 days with SW_IN
...............679
Look up table with window size of 28 days with SW_IN
........686
Look up table with window size of 35 days with SW_IN
.197
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..220
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....438
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
28
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......624
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
50
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........637
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.174
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........632
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...340
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........662
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....505
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............636
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......4
Look up table with window size of 14 days with SW_IN
.......665
Look up table with window size of 21 days with SW_IN
91
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................652
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........676
Look up table with window size of 21 days with SW_IN
...348
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................665
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............674
Look up table with window size of 21 days with SW_IN
......657
Look up table with window size of 28 days with SW_IN
12
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................646
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................5
Look up table with window size of 14 days with SW_IN
.................649
Look up table with window size of 21 days with SW_IN
...........679
Look up table with window size of 28 days with SW_IN
....401
Look up table with window size of 35 days with SW_IN
5
Look up table with window size of 42 days with SW_IN
16
Look up table with window size of 49 days with SW_IN
4
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................637
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................2
Mean diurnal course with window size of 2 days: .
......................2
Look up table with window size of 14 days with SW_IN
......................663
Look up table with window size of 21 days with SW_IN
...............671
Look up table with window size of 28 days with SW_IN
.........672
Look up table with window size of 35 days with SW_IN
..228
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Mean diurnal course with window size of 21 days: .
1
Mean diurnal course with window size of 28 days: .
0
Mean diurnal course with window size of 35 days: .
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.121
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..220
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....556
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......642
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
34
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........653
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.157
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........651
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...317
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........621
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....540
Look up table with window size of 21 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............646
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......678
Look up table with window size of 21 days with SW_IN
69
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................634
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........678
Look up table with window size of 21 days with SW_IN
...354
Look up table with window size of 28 days with SW_IN
10
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................622
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............672
Look up table with window size of 21 days with SW_IN
.......629
Look up table with window size of 28 days with SW_IN
83
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................650
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................634
Look up table with window size of 21 days with SW_IN
...........628
Look up table with window size of 28 days with SW_IN
....434
Look up table with window size of 35 days with SW_IN
38
Look up table with window size of 42 days with SW_IN
21
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................661
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................659
Look up table with window size of 21 days with SW_IN
...............684
Look up table with window size of 28 days with SW_IN
........648
Look up table with window size of 35 days with SW_IN
..227
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..264
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...386
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....465
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....555
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......649
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
27
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........635
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.174
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........605
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...368
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........655
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....510
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............625
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......663
Look up table with window size of 21 days with SW_IN
.106
Look up table with window size of 28 days with SW_IN
5
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................624
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........1
Look up table with window size of 14 days with SW_IN
..........665
Look up table with window size of 21 days with SW_IN
...349
Look up table with window size of 28 days with SW_IN
20
Look up table with window size of 35 days with SW_IN
17
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................627
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............6
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 14 days with SW_IN
.............661
Look up table with window size of 21 days with SW_IN
.......682
Look up table with window size of 28 days with SW_IN
11
Look up table with window size of 35 days with SW_IN
17
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................631
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................643
Look up table with window size of 21 days with SW_IN
...........694
Look up table with window size of 28 days with SW_IN
....423
Look up table with window size of 35 days with SW_IN
6
Look up table with window size of 42 days with SW_IN
8
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................630
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................8
Look up table with window size of 14 days with SW_IN
......................661
Look up table with window size of 21 days with SW_IN
...............656
Look up table with window size of 28 days with SW_IN
.........657
Look up table with window size of 35 days with SW_IN
..241
Look up table with window size of 42 days with SW_IN
25
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.146
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..220
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....464
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....551
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......637
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
37
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........622
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.185
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........635
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...2
Look up table with window size of 14 days with SW_IN
...334
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........646
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....513
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
3
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............635
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......677
Look up table with window size of 21 days with SW_IN
84
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................647
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........663
Look up table with window size of 21 days with SW_IN
...351
Look up table with window size of 28 days with SW_IN
14
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................661
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............655
Look up table with window size of 21 days with SW_IN
......678
Look up table with window size of 28 days with SW_IN
12
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................639
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................670
Look up table with window size of 21 days with SW_IN
..........676
Look up table with window size of 28 days with SW_IN
....404
Look up table with window size of 35 days with SW_IN
15
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................657
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................682
Look up table with window size of 21 days with SW_IN
...............672
Look up table with window size of 28 days with SW_IN
........669
Look up table with window size of 35 days with SW_IN
.199
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.148
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...385
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....467
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....516
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 14 days with SW_IN
42
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......636
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
40
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........656
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.155
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........645
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...316
Look up table with window size of 21 days with SW_IN
12
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........665
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....502
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............601
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......2
Mean diurnal course with window size of 2 days: .
.......2
Look up table with window size of 14 days with SW_IN
.......675
Look up table with window size of 21 days with SW_IN
.113
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................630
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........690
Look up table with window size of 21 days with SW_IN
...354
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................647
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............660
Look up table with window size of 21 days with SW_IN
.......632
Look up table with window size of 28 days with SW_IN
51
Look up table with window size of 35 days with SW_IN
13
Look up table with window size of 42 days with SW_IN
5
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................662
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................640
Look up table with window size of 21 days with SW_IN
...........625
Look up table with window size of 28 days with SW_IN
....418
Look up table with window size of 35 days with SW_IN
47
Look up table with window size of 42 days with SW_IN
8
Look up table with window size of 49 days with SW_IN
5
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................654
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................658
Look up table with window size of 21 days with SW_IN
...............688
Look up table with window size of 28 days with SW_IN
........684
Look up table with window size of 35 days with SW_IN
.195
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...320
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...385
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....457
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
7
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....560
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......632
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
44
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........626
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.184
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........636
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...335
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........668
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 14 days with SW_IN
....499
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............622
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......675
Look up table with window size of 21 days with SW_IN
.102
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................645
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........689
Look up table with window size of 21 days with SW_IN
...341
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................649
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............668
Look up table with window size of 21 days with SW_IN
......620
Look up table with window size of 28 days with SW_IN
65
Look up table with window size of 35 days with SW_IN
6
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................613
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................690
Look up table with window size of 21 days with SW_IN
...........666
Look up table with window size of 28 days with SW_IN
....420
Look up table with window size of 35 days with SW_IN
13
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................635
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................6
Look up table with window size of 14 days with SW_IN
......................613
Look up table with window size of 21 days with SW_IN
................662
Look up table with window size of 28 days with SW_IN
.........680
Look up table with window size of 35 days with SW_IN
..222
Look up table with window size of 42 days with SW_IN
50
Look up table with window size of 49 days with SW_IN
11
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..262
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....465
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....561
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......614
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
60
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........657
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.154
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........628
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...1
Look up table with window size of 14 days with SW_IN
...344
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........645
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....502
Look up table with window size of 21 days with SW_IN
18
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............664
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......661
Look up table with window size of 21 days with SW_IN
74
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................648
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........665
Look up table with window size of 21 days with SW_IN
...362
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................614
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............644
Look up table with window size of 21 days with SW_IN
.......645
Look up table with window size of 28 days with SW_IN
.72
Look up table with window size of 35 days with SW_IN
28
Look up table with window size of 42 days with SW_IN
5
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................641
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................675
Look up table with window size of 21 days with SW_IN
..........668
Look up table with window size of 28 days with SW_IN
....412
Look up table with window size of 35 days with SW_IN
6
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................632
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................680
Look up table with window size of 21 days with SW_IN
...............672
Look up table with window size of 28 days with SW_IN
........661
Look up table with window size of 35 days with SW_IN
..220
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
10
Look up table with window size of 56 days with SW_IN
3
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..215
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....560
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......606
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
70
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........639
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.165
Look up table with window size of 21 days with SW_IN
7
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........633
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...311
Look up table with window size of 21 days with SW_IN
29
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........669
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 14 days with SW_IN
....498
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............638
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......675
Look up table with window size of 21 days with SW_IN
84
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................636
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........680
Look up table with window size of 21 days with SW_IN
...359
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................655
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............660
Look up table with window size of 21 days with SW_IN
......665
Look up table with window size of 28 days with SW_IN
28
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................631
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................663
Look up table with window size of 21 days with SW_IN
...........697
Look up table with window size of 28 days with SW_IN
....414
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................623
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................1
Look up table with window size of 14 days with SW_IN
......................668
Look up table with window size of 21 days with SW_IN
...............707
Look up table with window size of 28 days with SW_IN
........632
Look up table with window size of 35 days with SW_IN
..242
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
4
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....467
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....554
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......657
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
18
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........649
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.162
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........650
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...1
Look up table with window size of 14 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........650
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....1
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....508
Look up table with window size of 21 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............657
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......674
Look up table with window size of 21 days with SW_IN
68
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................658
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........679
Look up table with window size of 21 days with SW_IN
...337
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................646
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............1
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............675
Look up table with window size of 21 days with SW_IN
......671
Look up table with window size of 28 days with SW_IN
13
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................611
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................688
Look up table with window size of 21 days with SW_IN
...........662
Look up table with window size of 28 days with SW_IN
....426
Look up table with window size of 35 days with SW_IN
12
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................639
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................675
Look up table with window size of 21 days with SW_IN
...............654
Look up table with window size of 28 days with SW_IN
.........646
Look up table with window size of 35 days with SW_IN
..241
Look up table with window size of 42 days with SW_IN
21
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
2
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.179
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...386
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......655
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
21
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........612
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 14 days with SW_IN
.193
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........641
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...1
Mean diurnal course with window size of 2 days: .
...5
Look up table with window size of 14 days with SW_IN
...323
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........627
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....529
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............583
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........6
Mean diurnal course with window size of 2 days: .
........9
Look up table with window size of 14 days with SW_IN
........667
Look up table with window size of 21 days with SW_IN
.129
Look up table with window size of 28 days with SW_IN
4
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................626
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........655
Look up table with window size of 21 days with SW_IN
...392
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................636
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............656
Look up table with window size of 21 days with SW_IN
.......671
Look up table with window size of 28 days with SW_IN
29
Look up table with window size of 35 days with SW_IN
14
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................643
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................666
Look up table with window size of 21 days with SW_IN
..........675
Look up table with window size of 28 days with SW_IN
....416
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................646
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................4
Look up table with window size of 14 days with SW_IN
......................649
Look up table with window size of 21 days with SW_IN
...............661
Look up table with window size of 28 days with SW_IN
.........659
Look up table with window size of 35 days with SW_IN
..232
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
18
Look up table with window size of 56 days with SW_IN
7
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....539
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
20
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......649
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
25
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........650
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 14 days with SW_IN
.160
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........620
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...353
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........615
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....549
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............635
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......647
Look up table with window size of 21 days with SW_IN
.116
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................651
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........646
Look up table with window size of 21 days with SW_IN
...377
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................651
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............654
Look up table with window size of 21 days with SW_IN
.......660
Look up table with window size of 28 days with SW_IN
40
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................608
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................689
Look up table with window size of 21 days with SW_IN
...........680
Look up table with window size of 28 days with SW_IN
....410
Look up table with window size of 35 days with SW_IN
11
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Mean diurnal course with window size of 14 days: .
1
Mean diurnal course with window size of 21 days: .
3
Mean diurnal course with window size of 28 days: .
2
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................612
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................644
Look up table with window size of 21 days with SW_IN
................720
Look up table with window size of 28 days with SW_IN
.........642
Look up table with window size of 35 days with SW_IN
..258
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
3
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....457
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....535
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
27
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......629
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
46
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........641
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.2
Look up table with window size of 14 days with SW_IN
.166
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........647
Mean diurnal course with window size of 0 days: .
...1
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...325
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........649
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....1
Look up table with window size of 14 days with SW_IN
.....514
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............663
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......655
Look up table with window size of 21 days with SW_IN
80
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................646
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........662
Look up table with window size of 21 days with SW_IN
...365
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................653
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............1
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............670
Look up table with window size of 21 days with SW_IN
......679
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
3
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................636
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................1
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................653
Look up table with window size of 21 days with SW_IN
...........673
Look up table with window size of 28 days with SW_IN
....433
Look up table with window size of 35 days with SW_IN
9
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................638
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................2
Mean diurnal course with window size of 2 days: .
......................3
Look up table with window size of 14 days with SW_IN
......................687
Look up table with window size of 21 days with SW_IN
...............681
Look up table with window size of 28 days with SW_IN
........675
Look up table with window size of 35 days with SW_IN
.193
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.121
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....442
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 14 days with SW_IN
22
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....556
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......624
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
49
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........635
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.175
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........616
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...336
Look up table with window size of 21 days with SW_IN
19
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........636
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....525
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............637
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......661
Look up table with window size of 21 days with SW_IN
.100
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................631
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........653
Look up table with window size of 21 days with SW_IN
...391
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................648
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 14 days with SW_IN
.............659
Look up table with window size of 21 days with SW_IN
.......663
Look up table with window size of 28 days with SW_IN
26
Look up table with window size of 35 days with SW_IN
11
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................643
Mean diurnal course with window size of 0 days: .
.................1
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................671
Look up table with window size of 21 days with SW_IN
..........673
Look up table with window size of 28 days with SW_IN
....411
Look up table with window size of 35 days with SW_IN
5
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................644
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................690
Look up table with window size of 21 days with SW_IN
...............665
Look up table with window size of 28 days with SW_IN
........664
Look up table with window size of 35 days with SW_IN
..214
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..247
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Mean diurnal course with window size of 2 days: .
8
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....464
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....561
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......669
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........586
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..0
Mean diurnal course with window size of 2 days: .
..0
Look up table with window size of 14 days with SW_IN
..225
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........656
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...311
Look up table with window size of 21 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........652
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....1
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....509
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............646
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......666
Look up table with window size of 21 days with SW_IN
87
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................651
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........672
Look up table with window size of 21 days with SW_IN
...350
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................626
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............675
Look up table with window size of 21 days with SW_IN
.......658
Look up table with window size of 28 days with SW_IN
49
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................650
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................1
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................663
Look up table with window size of 21 days with SW_IN
..........627
Look up table with window size of 28 days with SW_IN
....408
Look up table with window size of 35 days with SW_IN
52
Look up table with window size of 42 days with SW_IN
4
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................664
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................1
Mean diurnal course with window size of 2 days: .
......................4
Look up table with window size of 14 days with SW_IN
......................651
Look up table with window size of 21 days with SW_IN
...............659
Look up table with window size of 28 days with SW_IN
.........686
Look up table with window size of 35 days with SW_IN
..206
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
7
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....457
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......634
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
42
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........625
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 14 days with SW_IN
.183
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........634
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...339
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........640
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....527
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............613
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......3
Mean diurnal course with window size of 2 days: .
.......1
Look up table with window size of 14 days with SW_IN
.......661
Look up table with window size of 21 days with SW_IN
.104
Look up table with window size of 28 days with SW_IN
14
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................633
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........1
Look up table with window size of 14 days with SW_IN
..........649
Look up table with window size of 21 days with SW_IN
...380
Look up table with window size of 28 days with SW_IN
12
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................651
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............676
Look up table with window size of 21 days with SW_IN
......661
Look up table with window size of 28 days with SW_IN
18
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................660
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................664
Look up table with window size of 21 days with SW_IN
..........657
Look up table with window size of 28 days with SW_IN
....390
Look up table with window size of 35 days with SW_IN
30
Look up table with window size of 42 days with SW_IN
4
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................634
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................1
Look up table with window size of 14 days with SW_IN
......................656
Look up table with window size of 21 days with SW_IN
...............665
Look up table with window size of 28 days with SW_IN
.........664
Look up table with window size of 35 days with SW_IN
..247
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
1
Mean diurnal course with window size of 7 days: .
4
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
5
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..266
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...303
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 14 days with SW_IN
10
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....547
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
15
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......663
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
13
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........615
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.196
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........631
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...2
Mean diurnal course with window size of 2 days: .
...2
Look up table with window size of 14 days with SW_IN
...329
Look up table with window size of 21 days with SW_IN
9
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........651
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....3
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....510
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............637
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......673
Look up table with window size of 21 days with SW_IN
89
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................651
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........3
Look up table with window size of 14 days with SW_IN
..........669
Look up table with window size of 21 days with SW_IN
...352
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................634
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............673
Look up table with window size of 21 days with SW_IN
.......668
Look up table with window size of 28 days with SW_IN
29
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................651
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................656
Look up table with window size of 21 days with SW_IN
..........657
Look up table with window size of 28 days with SW_IN
....414
Look up table with window size of 35 days with SW_IN
12
Look up table with window size of 42 days with SW_IN
15
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................660
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................668
Look up table with window size of 21 days with SW_IN
...............674
Look up table with window size of 28 days with SW_IN
........661
Look up table with window size of 35 days with SW_IN
..216
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....451
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 14 days with SW_IN
9
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....560
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......569
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.3
Mean diurnal course with window size of 2 days: .
.9
Look up table with window size of 14 days with SW_IN
81
Look up table with window size of 21 days with SW_IN
14
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........629
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.181
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........638
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...334
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........637
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....527
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............641
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......674
Look up table with window size of 21 days with SW_IN
84
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................649
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........1
Look up table with window size of 14 days with SW_IN
..........666
Look up table with window size of 21 days with SW_IN
...347
Look up table with window size of 28 days with SW_IN
13
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................651
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............671
Look up table with window size of 21 days with SW_IN
......639
Look up table with window size of 28 days with SW_IN
44
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................660
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................646
Look up table with window size of 21 days with SW_IN
..........645
Look up table with window size of 28 days with SW_IN
....425
Look up table with window size of 35 days with SW_IN
19
Look up table with window size of 42 days with SW_IN
5
Look up table with window size of 49 days with SW_IN
5
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................662
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................671
Look up table with window size of 21 days with SW_IN
...............680
Look up table with window size of 28 days with SW_IN
........671
Look up table with window size of 35 days with SW_IN
.195
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....458
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......647
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
27
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........632
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.179
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........657
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...316
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........657
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....507
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............626
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......673
Look up table with window size of 21 days with SW_IN
.89
Look up table with window size of 28 days with SW_IN
8
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................641
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........667
Look up table with window size of 21 days with SW_IN
...358
Look up table with window size of 28 days with SW_IN
9
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................629
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............2
Look up table with window size of 14 days with SW_IN
.............667
Look up table with window size of 21 days with SW_IN
.......650
Look up table with window size of 28 days with SW_IN
39
Look up table with window size of 35 days with SW_IN
14
Look up table with window size of 42 days with SW_IN
7
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................609
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................2
Look up table with window size of 14 days with SW_IN
.................691
Look up table with window size of 21 days with SW_IN
...........641
Look up table with window size of 28 days with SW_IN
....442
Look up table with window size of 35 days with SW_IN
16
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................633
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................670
Look up table with window size of 21 days with SW_IN
...............657
Look up table with window size of 28 days with SW_IN
.........668
Look up table with window size of 35 days with SW_IN
..241
Look up table with window size of 42 days with SW_IN
4
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Mean diurnal course with window size of 14 days: .
2
Mean diurnal course with window size of 21 days: .
0
Mean diurnal course with window size of 28 days: .
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.181
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...386
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....462
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....545
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......637
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
38
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........608
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..1
Mean diurnal course with window size of 2 days: .
..1
Look up table with window size of 14 days with SW_IN
..199
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........616
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...357
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........626
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....6
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....503
Look up table with window size of 21 days with SW_IN
31
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............649
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......675
Look up table with window size of 21 days with SW_IN
75
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................626
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........665
Look up table with window size of 21 days with SW_IN
...371
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
8
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................650
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............660
Look up table with window size of 21 days with SW_IN
......687
Look up table with window size of 28 days with SW_IN
10
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................606
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................1
Look up table with window size of 14 days with SW_IN
.................707
Look up table with window size of 21 days with SW_IN
..........621
Look up table with window size of 28 days with SW_IN
....465
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................664
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................670
Look up table with window size of 21 days with SW_IN
...............663
Look up table with window size of 28 days with SW_IN
........678
Look up table with window size of 35 days with SW_IN
..204
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..220
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...384
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....448
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 14 days with SW_IN
13
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....561
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......641
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
31
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........634
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.177
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........608
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...1
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...360
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........638
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....528
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............626
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......683
Look up table with window size of 21 days with SW_IN
90
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................654
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........669
Look up table with window size of 21 days with SW_IN
...353
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................647
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............673
Look up table with window size of 21 days with SW_IN
......679
Look up table with window size of 28 days with SW_IN
9
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................664
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................678
Look up table with window size of 21 days with SW_IN
..........664
Look up table with window size of 28 days with SW_IN
...399
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................630
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................1
Look up table with window size of 14 days with SW_IN
......................662
Look up table with window size of 21 days with SW_IN
...............658
Look up table with window size of 28 days with SW_IN
.........697
Look up table with window size of 35 days with SW_IN
..228
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
2
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...387
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....465
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....561
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......625
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
8
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........647
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.163
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........656
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...317
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........650
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....2
Look up table with window size of 14 days with SW_IN
.....514
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............637
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......3
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......654
Look up table with window size of 21 days with SW_IN
.104
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................668
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........660
Look up table with window size of 21 days with SW_IN
...345
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................620
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 14 days with SW_IN
.............680
Look up table with window size of 21 days with SW_IN
.......667
Look up table with window size of 28 days with SW_IN
39
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................661
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................675
Look up table with window size of 21 days with SW_IN
..........673
Look up table with window size of 28 days with SW_IN
...396
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................659
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................677
Look up table with window size of 21 days with SW_IN
...............678
Look up table with window size of 28 days with SW_IN
........672
Look up table with window size of 35 days with SW_IN
.193
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.120
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....467
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....561
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......629
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
47
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........652
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.159
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........607
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...362
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........656
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....511
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............653
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......660
Look up table with window size of 21 days with SW_IN
86
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................664
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........3
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........673
Look up table with window size of 21 days with SW_IN
...336
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................648
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 14 days with SW_IN
.............663
Look up table with window size of 21 days with SW_IN
......636
Look up table with window size of 28 days with SW_IN
60
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................648
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................641
Look up table with window size of 21 days with SW_IN
...........671
Look up table with window size of 28 days with SW_IN
....420
Look up table with window size of 35 days with SW_IN
5
Look up table with window size of 42 days with SW_IN
14
Look up table with window size of 49 days with SW_IN
6
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................640
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................666
Look up table with window size of 21 days with SW_IN
...............667
Look up table with window size of 28 days with SW_IN
.........624
Look up table with window size of 35 days with SW_IN
..238
Look up table with window size of 42 days with SW_IN
32
Look up table with window size of 49 days with SW_IN
12
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..219
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...387
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....454
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 14 days with SW_IN
9
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....559
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......638
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
37
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........670
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.141
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........617
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...356
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........625
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....542
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............625
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......4
Look up table with window size of 14 days with SW_IN
.......674
Look up table with window size of 21 days with SW_IN
93
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................620
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........662
Look up table with window size of 21 days with SW_IN
...377
Look up table with window size of 28 days with SW_IN
16
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................650
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............1
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............672
Look up table with window size of 21 days with SW_IN
......660
Look up table with window size of 28 days with SW_IN
24
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................637
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................671
Look up table with window size of 21 days with SW_IN
..........673
Look up table with window size of 28 days with SW_IN
....415
Look up table with window size of 35 days with SW_IN
7
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................657
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................659
Look up table with window size of 21 days with SW_IN
...............672
Look up table with window size of 28 days with SW_IN
........669
Look up table with window size of 35 days with SW_IN
..220
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...375
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 14 days with SW_IN
9
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....449
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
8
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....555
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......614
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
61
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........633
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.178
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........649
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...1
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...323
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........644
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....523
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............631
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......677
Look up table with window size of 21 days with SW_IN
91
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................627
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........663
Look up table with window size of 21 days with SW_IN
...365
Look up table with window size of 28 days with SW_IN
21
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................625
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............5
Mean diurnal course with window size of 2 days: .
.............9
Look up table with window size of 14 days with SW_IN
.............642
Look up table with window size of 21 days with SW_IN
.......680
Look up table with window size of 28 days with SW_IN
38
Look up table with window size of 35 days with SW_IN
9
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................603
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................1
Mean diurnal course with window size of 2 days: .
..................4
Look up table with window size of 14 days with SW_IN
.................670
Look up table with window size of 21 days with SW_IN
...........692
Look up table with window size of 28 days with SW_IN
....426
Look up table with window size of 35 days with SW_IN
9
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................622
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................3
Look up table with window size of 14 days with SW_IN
......................663
Look up table with window size of 21 days with SW_IN
...............659
Look up table with window size of 28 days with SW_IN
.........692
Look up table with window size of 35 days with SW_IN
..237
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.181
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...383
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....457
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....547
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 14 days with SW_IN
9
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......624
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 14 days with SW_IN
48
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........633
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.5
Mean diurnal course with window size of 2 days: .
.9
Look up table with window size of 14 days with SW_IN
.161
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........642
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...1
Look up table with window size of 14 days with SW_IN
...326
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........637
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....4
Look up table with window size of 14 days with SW_IN
.....514
Look up table with window size of 21 days with SW_IN
9
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............659
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......656
Look up table with window size of 21 days with SW_IN
78
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................668
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........661
Look up table with window size of 21 days with SW_IN
...347
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................647
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............651
Look up table with window size of 21 days with SW_IN
.......667
Look up table with window size of 28 days with SW_IN
38
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................646
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................671
Look up table with window size of 21 days with SW_IN
..........658
Look up table with window size of 28 days with SW_IN
....410
Look up table with window size of 35 days with SW_IN
17
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................638
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................669
Look up table with window size of 21 days with SW_IN
...............664
Look up table with window size of 28 days with SW_IN
.........679
Look up table with window size of 35 days with SW_IN
..218
Look up table with window size of 42 days with SW_IN
4
Look up table with window size of 49 days with SW_IN
5
Look up table with window size of 56 days with SW_IN
2
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
6
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..216
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....560
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......633
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
43
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........653
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.158
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........629
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...343
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........631
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....536
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............640
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......682
Look up table with window size of 21 days with SW_IN
75
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................626
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........664
Look up table with window size of 21 days with SW_IN
...349
Look up table with window size of 28 days with SW_IN
16
Look up table with window size of 35 days with SW_IN
20
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................649
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............2
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............664
Look up table with window size of 21 days with SW_IN
......630
Look up table with window size of 28 days with SW_IN
55
Look up table with window size of 35 days with SW_IN
7
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................657
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................1
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................665
Look up table with window size of 21 days with SW_IN
..........683
Look up table with window size of 28 days with SW_IN
...399
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................639
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................5
Look up table with window size of 14 days with SW_IN
......................657
Look up table with window size of 21 days with SW_IN
...............638
Look up table with window size of 28 days with SW_IN
.........665
Look up table with window size of 35 days with SW_IN
..248
Look up table with window size of 42 days with SW_IN
22
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
3
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.149
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....556
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......648
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
28
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........642
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.169
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........653
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...319
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........639
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....4
Mean diurnal course with window size of 2 days: .
.....1
Look up table with window size of 14 days with SW_IN
.....500
Look up table with window size of 21 days with SW_IN
21
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............648
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......681
Look up table with window size of 21 days with SW_IN
69
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................638
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........675
Look up table with window size of 21 days with SW_IN
...359
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................646
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............670
Look up table with window size of 21 days with SW_IN
......686
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................602
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 14 days with SW_IN
..................697
Look up table with window size of 21 days with SW_IN
...........669
Look up table with window size of 28 days with SW_IN
....417
Look up table with window size of 35 days with SW_IN
19
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................647
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................670
Look up table with window size of 21 days with SW_IN
...............671
Look up table with window size of 28 days with SW_IN
........643
Look up table with window size of 35 days with SW_IN
..211
Look up table with window size of 42 days with SW_IN
34
Look up table with window size of 49 days with SW_IN
3
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..220
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..265
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....543
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
18
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......647
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........635
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.176
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........659
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...309
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........646
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....2
Mean diurnal course with window size of 2 days: .
.....2
Look up table with window size of 14 days with SW_IN
.....495
Look up table with window size of 21 days with SW_IN
19
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............627
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......677
Look up table with window size of 21 days with SW_IN
95
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................642
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........668
Look up table with window size of 21 days with SW_IN
...361
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
5
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................666
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............671
Look up table with window size of 21 days with SW_IN
......653
Look up table with window size of 28 days with SW_IN
18
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................637
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................681
Look up table with window size of 21 days with SW_IN
..........647
Look up table with window size of 28 days with SW_IN
....435
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................650
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................1
Look up table with window size of 14 days with SW_IN
......................659
Look up table with window size of 21 days with SW_IN
...............672
Look up table with window size of 28 days with SW_IN
........676
Look up table with window size of 35 days with SW_IN
..218
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...319
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......632
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 14 days with SW_IN
35
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........656
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.155
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........609
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...364
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........640
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....510
Look up table with window size of 21 days with SW_IN
15
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............617
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......5
Mean diurnal course with window size of 2 days: .
.......4
Look up table with window size of 14 days with SW_IN
.......665
Look up table with window size of 21 days with SW_IN
.108
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................637
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........681
Look up table with window size of 21 days with SW_IN
...358
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................659
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............666
Look up table with window size of 21 days with SW_IN
......669
Look up table with window size of 28 days with SW_IN
12
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................647
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................674
Look up table with window size of 21 days with SW_IN
..........659
Look up table with window size of 28 days with SW_IN
....409
Look up table with window size of 35 days with SW_IN
16
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................578
Mean diurnal course with window size of 0 days: .
.......................0
Mean diurnal course with window size of 1 days: .
.......................7
Mean diurnal course with window size of 2 days: .
......................15
Look up table with window size of 14 days with SW_IN
......................679
Look up table with window size of 21 days with SW_IN
................656
Look up table with window size of 28 days with SW_IN
.........623
Look up table with window size of 35 days with SW_IN
...282
Look up table with window size of 42 days with SW_IN
29
Look up table with window size of 49 days with SW_IN
7
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
3
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..219
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....452
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....542
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
18
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......649
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
27
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........600
Mean diurnal course with window size of 0 days: .
..1
Mean diurnal course with window size of 1 days: .
..2
Mean diurnal course with window size of 2 days: .
..2
Look up table with window size of 14 days with SW_IN
..205
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........647
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...1
Look up table with window size of 14 days with SW_IN
...325
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........648
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....513
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............646
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......641
Look up table with window size of 21 days with SW_IN
.112
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................652
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........681
Look up table with window size of 21 days with SW_IN
...341
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................614
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............706
Look up table with window size of 21 days with SW_IN
......655
Look up table with window size of 28 days with SW_IN
33
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................650
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................683
Look up table with window size of 21 days with SW_IN
..........668
Look up table with window size of 28 days with SW_IN
....400
Look up table with window size of 35 days with SW_IN
3
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................610
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................4
Look up table with window size of 14 days with SW_IN
......................687
Look up table with window size of 21 days with SW_IN
...............620
Look up table with window size of 28 days with SW_IN
.........614
Look up table with window size of 35 days with SW_IN
...237
Look up table with window size of 42 days with SW_IN
.66
Look up table with window size of 49 days with SW_IN
38
Look up table with window size of 56 days with SW_IN
3
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....554
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......609
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
62
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........632
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.3
Look up table with window size of 14 days with SW_IN
.175
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........666
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...307
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........628
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....1
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....526
Look up table with window size of 21 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............670
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......670
Look up table with window size of 21 days with SW_IN
59
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................594
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........695
Look up table with window size of 21 days with SW_IN
...385
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................625
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............654
Look up table with window size of 21 days with SW_IN
.......691
Look up table with window size of 28 days with SW_IN
22
Look up table with window size of 35 days with SW_IN
10
Look up table with window size of 42 days with SW_IN
6
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................634
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................685
Look up table with window size of 21 days with SW_IN
..........665
Look up table with window size of 28 days with SW_IN
....420
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................613
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................686
Look up table with window size of 21 days with SW_IN
...............691
Look up table with window size of 28 days with SW_IN
........622
Look up table with window size of 35 days with SW_IN
..252
Look up table with window size of 42 days with SW_IN
8
Look up table with window size of 49 days with SW_IN
7
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....532
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 14 days with SW_IN
25
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......644
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
31
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........663
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.148
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........657
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...6
Look up table with window size of 14 days with SW_IN
...308
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........628
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....527
Look up table with window size of 21 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............638
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......676
Look up table with window size of 21 days with SW_IN
84
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................643
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........682
Look up table with window size of 21 days with SW_IN
...347
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................636
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............674
Look up table with window size of 21 days with SW_IN
......678
Look up table with window size of 28 days with SW_IN
18
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................646
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................632
Look up table with window size of 21 days with SW_IN
...........632
Look up table with window size of 28 days with SW_IN
....435
Look up table with window size of 35 days with SW_IN
41
Look up table with window size of 42 days with SW_IN
19
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................657
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................680
Look up table with window size of 21 days with SW_IN
...............671
Look up table with window size of 28 days with SW_IN
........670
Look up table with window size of 35 days with SW_IN
..201
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
76
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...387
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....557
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......655
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
21
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........630
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 14 days with SW_IN
.180
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........660
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...313
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........646
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....517
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............648
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......642
Look up table with window size of 21 days with SW_IN
.106
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................663
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........662
Look up table with window size of 21 days with SW_IN
...351
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................647
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............2
Look up table with window size of 14 days with SW_IN
.............671
Look up table with window size of 21 days with SW_IN
......646
Look up table with window size of 28 days with SW_IN
36
Look up table with window size of 35 days with SW_IN
3
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................603
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................1
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 14 days with SW_IN
..................708
Look up table with window size of 21 days with SW_IN
..........657
Look up table with window size of 28 days with SW_IN
....419
Look up table with window size of 35 days with SW_IN
9
Look up table with window size of 42 days with SW_IN
5
Look up table with window size of 49 days with SW_IN
3
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................645
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................675
Look up table with window size of 21 days with SW_IN
...............662
Look up table with window size of 28 days with SW_IN
........627
Look up table with window size of 35 days with SW_IN
..230
Look up table with window size of 42 days with SW_IN
21
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
17
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...386
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....466
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....559
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......639
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
36
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........647
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.164
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........656
Mean diurnal course with window size of 0 days: .
...1
Mean diurnal course with window size of 1 days: .
...2
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...312
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........608
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....3
Mean diurnal course with window size of 2 days: .
.....2
Look up table with window size of 14 days with SW_IN
.....517
Look up table with window size of 21 days with SW_IN
37
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............667
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......672
Look up table with window size of 21 days with SW_IN
60
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................644
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........5
Mean diurnal course with window size of 2 days: .
..........4
Look up table with window size of 14 days with SW_IN
..........674
Look up table with window size of 21 days with SW_IN
...346
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................641
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............669
Look up table with window size of 21 days with SW_IN
......661
Look up table with window size of 28 days with SW_IN
36
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................602
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................0
Look up table with window size of 14 days with SW_IN
..................670
Look up table with window size of 21 days with SW_IN
...........654
Look up table with window size of 28 days with SW_IN
....445
Look up table with window size of 35 days with SW_IN
21
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
9
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................650
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................675
Look up table with window size of 21 days with SW_IN
...............652
Look up table with window size of 28 days with SW_IN
.........656
Look up table with window size of 35 days with SW_IN
..218
Look up table with window size of 42 days with SW_IN
21
Look up table with window size of 49 days with SW_IN
7
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
49
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...387
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....558
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......668
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........646
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.165
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........659
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...2
Look up table with window size of 14 days with SW_IN
...312
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........649
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....509
Look up table with window size of 21 days with SW_IN
9
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............667
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......660
Look up table with window size of 21 days with SW_IN
72
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................595
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........680
Look up table with window size of 21 days with SW_IN
....385
Look up table with window size of 28 days with SW_IN
8
Look up table with window size of 35 days with SW_IN
7
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................649
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............657
Look up table with window size of 21 days with SW_IN
.......662
Look up table with window size of 28 days with SW_IN
36
Look up table with window size of 35 days with SW_IN
3
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................636
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................1
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................650
Look up table with window size of 21 days with SW_IN
...........664
Look up table with window size of 28 days with SW_IN
....409
Look up table with window size of 35 days with SW_IN
14
Look up table with window size of 42 days with SW_IN
26
Look up table with window size of 49 days with SW_IN
5
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................636
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................659
Look up table with window size of 21 days with SW_IN
...............636
Look up table with window size of 28 days with SW_IN
.........630
Look up table with window size of 35 days with SW_IN
...268
Look up table with window size of 42 days with SW_IN
21
Look up table with window size of 49 days with SW_IN
21
Look up table with window size of 56 days with SW_IN
6
Look up table with window size of 63 days with SW_IN
2
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...317
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....466
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......641
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
35
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........638
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.173
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........647
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...325
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........639
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....521
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............624
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......647
Look up table with window size of 21 days with SW_IN
.128
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................637
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........675
Look up table with window size of 21 days with SW_IN
...364
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................654
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............3
Mean diurnal course with window size of 2 days: .
.............3
Look up table with window size of 14 days with SW_IN
.............648
Look up table with window size of 21 days with SW_IN
.......684
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
10
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................628
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................6
Look up table with window size of 14 days with SW_IN
.................629
Look up table with window size of 21 days with SW_IN
...........626
Look up table with window size of 28 days with SW_IN
.....448
Look up table with window size of 35 days with SW_IN
47
Look up table with window size of 42 days with SW_IN
17
Look up table with window size of 49 days with SW_IN
4
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................635
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................2
Look up table with window size of 14 days with SW_IN
......................663
Look up table with window size of 21 days with SW_IN
...............662
Look up table with window size of 28 days with SW_IN
.........645
Look up table with window size of 35 days with SW_IN
..257
Look up table with window size of 42 days with SW_IN
8
Look up table with window size of 49 days with SW_IN
3
Look up table with window size of 56 days with SW_IN
4
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
40
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.179
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...320
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....454
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
14
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....554
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......652
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 14 days with SW_IN
21
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........645
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.166
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........650
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...323
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........601
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....1
Look up table with window size of 14 days with SW_IN
.....549
Look up table with window size of 21 days with SW_IN
14
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............649
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......677
Look up table with window size of 21 days with SW_IN
73
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................650
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........2
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........685
Look up table with window size of 21 days with SW_IN
...335
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................632
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............682
Look up table with window size of 21 days with SW_IN
......652
Look up table with window size of 28 days with SW_IN
41
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................662
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................666
Look up table with window size of 21 days with SW_IN
..........646
Look up table with window size of 28 days with SW_IN
....402
Look up table with window size of 35 days with SW_IN
29
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................613
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................670
Look up table with window size of 21 days with SW_IN
...............660
Look up table with window size of 28 days with SW_IN
.........673
Look up table with window size of 35 days with SW_IN
..248
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
5
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
4
Mean diurnal course with window size of 21 days: .
0
Mean diurnal course with window size of 28 days: .
0
Mean diurnal course with window size of 35 days: .
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....464
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....558
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......619
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 14 days with SW_IN
41
Look up table with window size of 21 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........643
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.168
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........637
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...336
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........634
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....531
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............639
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......674
Look up table with window size of 21 days with SW_IN
84
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................626
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........666
Look up table with window size of 21 days with SW_IN
...381
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................622
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............667
Look up table with window size of 21 days with SW_IN
.......673
Look up table with window size of 28 days with SW_IN
45
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................593
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................9
Mean diurnal course with window size of 2 days: .
..................1
Look up table with window size of 14 days with SW_IN
..................643
Look up table with window size of 21 days with SW_IN
...........629
Look up table with window size of 28 days with SW_IN
.....496
Look up table with window size of 35 days with SW_IN
34
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................669
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................666
Look up table with window size of 21 days with SW_IN
...............679
Look up table with window size of 28 days with SW_IN
........672
Look up table with window size of 35 days with SW_IN
.193
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....467
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....552
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
10
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......639
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
35
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........630
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.180
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........655
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...318
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........659
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....1
Look up table with window size of 14 days with SW_IN
.....482
Look up table with window size of 21 days with SW_IN
20
Look up table with window size of 28 days with SW_IN
5
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............627
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......654
Look up table with window size of 21 days with SW_IN
.117
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................663
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........676
Look up table with window size of 21 days with SW_IN
...337
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................623
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 14 days with SW_IN
.............681
Look up table with window size of 21 days with SW_IN
.......653
Look up table with window size of 28 days with SW_IN
48
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................645
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................667
Look up table with window size of 21 days with SW_IN
..........674
Look up table with window size of 28 days with SW_IN
....412
Look up table with window size of 35 days with SW_IN
6
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................637
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................675
Look up table with window size of 21 days with SW_IN
...............665
Look up table with window size of 28 days with SW_IN
.........676
Look up table with window size of 35 days with SW_IN
..224
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.121
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....460
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....531
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 14 days with SW_IN
26
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......632
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
42
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........643
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.166
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........636
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...1
Mean diurnal course with window size of 2 days: .
...3
Look up table with window size of 14 days with SW_IN
...331
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........571
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....3
Look up table with window size of 14 days with SW_IN
.....566
Look up table with window size of 21 days with SW_IN
25
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............637
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......668
Look up table with window size of 21 days with SW_IN
93
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................595
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........1
Look up table with window size of 14 days with SW_IN
..........643
Look up table with window size of 21 days with SW_IN
....427
Look up table with window size of 28 days with SW_IN
10
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................628
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............4
Look up table with window size of 14 days with SW_IN
.............661
Look up table with window size of 21 days with SW_IN
.......682
Look up table with window size of 28 days with SW_IN
16
Look up table with window size of 35 days with SW_IN
17
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................655
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................5
Look up table with window size of 14 days with SW_IN
.................666
Look up table with window size of 21 days with SW_IN
..........660
Look up table with window size of 28 days with SW_IN
....407
Look up table with window size of 35 days with SW_IN
12
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................648
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................673
Look up table with window size of 21 days with SW_IN
...............663
Look up table with window size of 28 days with SW_IN
........644
Look up table with window size of 35 days with SW_IN
..213
Look up table with window size of 42 days with SW_IN
31
Look up table with window size of 49 days with SW_IN
6
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..262
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...320
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....464
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......623
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
53
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........658
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.152
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........642
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...330
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........639
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....528
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............633
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......659
Look up table with window size of 21 days with SW_IN
.101
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................645
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........641
Look up table with window size of 21 days with SW_IN
...387
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................656
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............658
Look up table with window size of 21 days with SW_IN
......685
Look up table with window size of 28 days with SW_IN
8
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................619
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................1
Mean diurnal course with window size of 2 days: .
.................7
Look up table with window size of 14 days with SW_IN
.................681
Look up table with window size of 21 days with SW_IN
..........646
Look up table with window size of 28 days with SW_IN
....397
Look up table with window size of 35 days with SW_IN
39
Look up table with window size of 42 days with SW_IN
11
Look up table with window size of 49 days with SW_IN
4
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................610
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................683
Look up table with window size of 21 days with SW_IN
...............679
Look up table with window size of 28 days with SW_IN
.........679
Look up table with window size of 35 days with SW_IN
..220
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
5
Finished gap filling of 'VPD' in 6 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...311
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....463
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......632
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
44
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........659
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.152
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........657
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...316
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........666
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....501
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............598
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........3
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......655
Look up table with window size of 21 days with SW_IN
.139
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................642
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........667
Look up table with window size of 21 days with SW_IN
...361
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
5
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................632
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............6
Mean diurnal course with window size of 2 days: .
.............7
Look up table with window size of 14 days with SW_IN
.............685
Look up table with window size of 21 days with SW_IN
......667
Look up table with window size of 28 days with SW_IN
11
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................625
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................1
Mean diurnal course with window size of 2 days: .
.................1
Look up table with window size of 14 days with SW_IN
.................654
Look up table with window size of 21 days with SW_IN
...........664
Look up table with window size of 28 days with SW_IN
....426
Look up table with window size of 35 days with SW_IN
18
Look up table with window size of 42 days with SW_IN
13
Look up table with window size of 49 days with SW_IN
3
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................644
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................666
Look up table with window size of 21 days with SW_IN
...............681
Look up table with window size of 28 days with SW_IN
........660
Look up table with window size of 35 days with SW_IN
..221
Look up table with window size of 42 days with SW_IN
5
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
0
Mean diurnal course with window size of 28 days: .
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...318
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...386
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....464
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....542
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 14 days with SW_IN
14
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......668
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........641
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.170
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........612
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...2
Look up table with window size of 14 days with SW_IN
...357
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........660
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....2
Look up table with window size of 14 days with SW_IN
.....489
Look up table with window size of 21 days with SW_IN
16
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............644
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......670
Look up table with window size of 21 days with SW_IN
84
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................650
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........666
Look up table with window size of 21 days with SW_IN
...357
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................661
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............676
Look up table with window size of 21 days with SW_IN
......659
Look up table with window size of 28 days with SW_IN
11
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................662
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................651
Look up table with window size of 21 days with SW_IN
..........693
Look up table with window size of 28 days with SW_IN
...396
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................651
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................631
Look up table with window size of 21 days with SW_IN
...............647
Look up table with window size of 28 days with SW_IN
.........715
Look up table with window size of 35 days with SW_IN
..235
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...387
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......642
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
34
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........620
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.190
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........623
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...1
Look up table with window size of 14 days with SW_IN
...349
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........669
Mean diurnal course with window size of 0 days: .
....0
Mean diurnal course with window size of 1 days: .
....0
Mean diurnal course with window size of 2 days: .
....0
Look up table with window size of 14 days with SW_IN
....494
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............662
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......672
Look up table with window size of 21 days with SW_IN
65
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................626
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........2
Mean diurnal course with window size of 2 days: .
..........11
Look up table with window size of 14 days with SW_IN
..........649
Look up table with window size of 21 days with SW_IN
...369
Look up table with window size of 28 days with SW_IN
12
Look up table with window size of 35 days with SW_IN
7
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................623
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............679
Look up table with window size of 21 days with SW_IN
.......671
Look up table with window size of 28 days with SW_IN
33
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................600
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................0
Mean diurnal course with window size of 2 days: .
..................2
Look up table with window size of 14 days with SW_IN
..................687
Look up table with window size of 21 days with SW_IN
...........640
Look up table with window size of 28 days with SW_IN
....439
Look up table with window size of 35 days with SW_IN
25
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
9
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................641
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................667
Look up table with window size of 21 days with SW_IN
...............664
Look up table with window size of 28 days with SW_IN
.........661
Look up table with window size of 35 days with SW_IN
..236
Look up table with window size of 42 days with SW_IN
3
Look up table with window size of 49 days with SW_IN
6
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..266
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...385
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....467
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......660
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
16
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........647
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.163
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........641
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...6
Look up table with window size of 14 days with SW_IN
...323
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........637
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....528
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............651
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......667
Look up table with window size of 21 days with SW_IN
80
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................643
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........662
Look up table with window size of 21 days with SW_IN
...365
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................616
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............675
Look up table with window size of 21 days with SW_IN
.......671
Look up table with window size of 28 days with SW_IN
43
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................669
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................670
Look up table with window size of 21 days with SW_IN
..........668
Look up table with window size of 28 days with SW_IN
...398
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................653
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................670
Look up table with window size of 21 days with SW_IN
...............657
Look up table with window size of 28 days with SW_IN
........681
Look up table with window size of 35 days with SW_IN
..212
Look up table with window size of 42 days with SW_IN
2
Look up table with window size of 49 days with SW_IN
4
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...319
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...387
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....464
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....550
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......629
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
47
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........620
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 14 days with SW_IN
.190
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........628
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...345
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........660
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....505
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............634
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......667
Look up table with window size of 21 days with SW_IN
98
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................639
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........629
Look up table with window size of 21 days with SW_IN
....406
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................669
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............673
Look up table with window size of 21 days with SW_IN
......666
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................668
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................667
Look up table with window size of 21 days with SW_IN
..........670
Look up table with window size of 28 days with SW_IN
....400
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................639
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................685
Look up table with window size of 21 days with SW_IN
...............653
Look up table with window size of 28 days with SW_IN
.........690
Look up table with window size of 35 days with SW_IN
..210
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.179
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....559
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......639
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
35
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........628
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.177
Look up table with window size of 21 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........638
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...333
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........658
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....497
Look up table with window size of 21 days with SW_IN
12
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............643
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......664
Look up table with window size of 21 days with SW_IN
92
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................645
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........670
Look up table with window size of 21 days with SW_IN
...358
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................636
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............4
Look up table with window size of 14 days with SW_IN
.............669
Look up table with window size of 21 days with SW_IN
......635
Look up table with window size of 28 days with SW_IN
58
Look up table with window size of 35 days with SW_IN
6
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................662
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................672
Look up table with window size of 21 days with SW_IN
..........673
Look up table with window size of 28 days with SW_IN
...398
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................619
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................677
Look up table with window size of 21 days with SW_IN
...............657
Look up table with window size of 28 days with SW_IN
.........664
Look up table with window size of 35 days with SW_IN
..254
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
2
Look up table with window size of 63 days with SW_IN
1
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
4
Mean diurnal course with window size of 28 days: .
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
80
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...383
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....463
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......652
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
22
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........636
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.175
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........645
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...327
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........657
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....495
Look up table with window size of 21 days with SW_IN
12
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............661
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......4
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......670
Look up table with window size of 21 days with SW_IN
64
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................665
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........677
Look up table with window size of 21 days with SW_IN
...334
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................660
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............682
Look up table with window size of 21 days with SW_IN
......665
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................625
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................2
Look up table with window size of 14 days with SW_IN
.................680
Look up table with window size of 21 days with SW_IN
..........660
Look up table with window size of 28 days with SW_IN
....428
Look up table with window size of 35 days with SW_IN
8
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................626
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................673
Look up table with window size of 21 days with SW_IN
...............659
Look up table with window size of 28 days with SW_IN
.........666
Look up table with window size of 35 days with SW_IN
..248
Look up table with window size of 42 days with SW_IN
4
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
1
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
2
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
80
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.120
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.145
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....462
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....548
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
14
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......648
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
28
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........644
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.167
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........650
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...323
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........651
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....516
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............643
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......684
Look up table with window size of 21 days with SW_IN
72
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................638
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........672
Look up table with window size of 21 days with SW_IN
...364
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................635
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............1
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............651
Look up table with window size of 21 days with SW_IN
.......698
Look up table with window size of 28 days with SW_IN
10
Look up table with window size of 35 days with SW_IN
8
Look up table with window size of 42 days with SW_IN
4
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................597
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................3
Mean diurnal course with window size of 2 days: .
..................9
Look up table with window size of 14 days with SW_IN
.................628
Look up table with window size of 21 days with SW_IN
...........715
Look up table with window size of 28 days with SW_IN
....423
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
23
Look up table with window size of 49 days with SW_IN
6
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................633
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................678
Look up table with window size of 21 days with SW_IN
...............614
Look up table with window size of 28 days with SW_IN
.........646
Look up table with window size of 35 days with SW_IN
...214
Look up table with window size of 42 days with SW_IN
53
Look up table with window size of 49 days with SW_IN
38
Look up table with window size of 56 days with SW_IN
1
Look up table with window size of 63 days with SW_IN
2
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.120
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...316
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....454
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
6
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....526
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
31
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......668
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........642
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.165
Look up table with window size of 21 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........645
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...326
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........619
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....545
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............641
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......652
Look up table with window size of 21 days with SW_IN
.102
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................652
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........668
Look up table with window size of 21 days with SW_IN
...356
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................600
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............0
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 14 days with SW_IN
..............636
Look up table with window size of 21 days with SW_IN
.......715
Look up table with window size of 28 days with SW_IN
51
Look up table with window size of 35 days with SW_IN
3
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................600
Mean diurnal course with window size of 0 days: .
..................0
Mean diurnal course with window size of 1 days: .
..................2
Mean diurnal course with window size of 2 days: .
..................1
Look up table with window size of 14 days with SW_IN
..................674
Look up table with window size of 21 days with SW_IN
...........638
Look up table with window size of 28 days with SW_IN
....446
Look up table with window size of 35 days with SW_IN
30
Look up table with window size of 42 days with SW_IN
7
Look up table with window size of 49 days with SW_IN
7
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................631
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................2
Mean diurnal course with window size of 2 days: .
......................2
Look up table with window size of 14 days with SW_IN
......................662
Look up table with window size of 21 days with SW_IN
...............674
Look up table with window size of 28 days with SW_IN
.........636
Look up table with window size of 35 days with SW_IN
..243
Look up table with window size of 42 days with SW_IN
20
Look up table with window size of 49 days with SW_IN
5
Look up table with window size of 56 days with SW_IN
3
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.179
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...318
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....549
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
11
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......653
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
22
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........656
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.153
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........593
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...374
Look up table with window size of 21 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........644
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....515
Look up table with window size of 21 days with SW_IN
8
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............665
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......663
Look up table with window size of 21 days with SW_IN
71
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................637
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........669
Look up table with window size of 21 days with SW_IN
...364
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................600
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............1
Mean diurnal course with window size of 2 days: .
..............0
Look up table with window size of 14 days with SW_IN
..............683
Look up table with window size of 21 days with SW_IN
.......658
Look up table with window size of 28 days with SW_IN
66
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................663
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................664
Look up table with window size of 21 days with SW_IN
..........668
Look up table with window size of 28 days with SW_IN
....407
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................605
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................1
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................654
Look up table with window size of 21 days with SW_IN
................681
Look up table with window size of 28 days with SW_IN
.........657
Look up table with window size of 35 days with SW_IN
..266
Look up table with window size of 42 days with SW_IN
4
Look up table with window size of 49 days with SW_IN
6
Look up table with window size of 56 days with SW_IN
4
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....457
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....551
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
9
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......631
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
44
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........642
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 14 days with SW_IN
.167
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........622
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...1
Mean diurnal course with window size of 2 days: .
...11
Look up table with window size of 14 days with SW_IN
...326
Look up table with window size of 21 days with SW_IN
13
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........639
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....526
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............664
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......664
Look up table with window size of 21 days with SW_IN
71
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................634
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........1
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........671
Look up table with window size of 21 days with SW_IN
...370
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................653
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............650
Look up table with window size of 21 days with SW_IN
.......669
Look up table with window size of 28 days with SW_IN
19
Look up table with window size of 35 days with SW_IN
17
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................624
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................681
Look up table with window size of 21 days with SW_IN
...........656
Look up table with window size of 28 days with SW_IN
....432
Look up table with window size of 35 days with SW_IN
4
Look up table with window size of 42 days with SW_IN
6
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................621
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................5
Look up table with window size of 14 days with SW_IN
......................662
Look up table with window size of 21 days with SW_IN
...............696
Look up table with window size of 28 days with SW_IN
........630
Look up table with window size of 35 days with SW_IN
..229
Look up table with window size of 42 days with SW_IN
18
Look up table with window size of 49 days with SW_IN
5
Look up table with window size of 56 days with SW_IN
12
Look up table with window size of 63 days with SW_IN
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
80
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...382
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......591
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 14 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........650
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 14 days with SW_IN
.160
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........663
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...310
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........576
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....5
Mean diurnal course with window size of 2 days: .
.....2
Look up table with window size of 14 days with SW_IN
.....567
Look up table with window size of 21 days with SW_IN
17
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............648
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......674
Look up table with window size of 21 days with SW_IN
77
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................620
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........652
Look up table with window size of 21 days with SW_IN
....395
Look up table with window size of 28 days with SW_IN
9
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................648
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 14 days with SW_IN
.............670
Look up table with window size of 21 days with SW_IN
......671
Look up table with window size of 28 days with SW_IN
15
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................664
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................673
Look up table with window size of 21 days with SW_IN
..........668
Look up table with window size of 28 days with SW_IN
....400
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................634
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................664
Look up table with window size of 21 days with SW_IN
...............669
Look up table with window size of 28 days with SW_IN
.........658
Look up table with window size of 35 days with SW_IN
..230
Look up table with window size of 42 days with SW_IN
7
Look up table with window size of 49 days with SW_IN
8
Look up table with window size of 56 days with SW_IN
3
Look up table with window size of 63 days with SW_IN
6
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..201
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
13
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....457
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....543
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......645
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
31
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........654
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.157
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........637
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...336
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........626
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....534
Look up table with window size of 21 days with SW_IN
3
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............630
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......670
Look up table with window size of 21 days with SW_IN
99
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................617
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........1
Look up table with window size of 14 days with SW_IN
..........669
Look up table with window size of 21 days with SW_IN
...383
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................637
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............1
Look up table with window size of 14 days with SW_IN
.............675
Look up table with window size of 21 days with SW_IN
......659
Look up table with window size of 28 days with SW_IN
31
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
0
Mean diurnal course with window size of 21 days: .
3
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................621
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................1
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................680
Look up table with window size of 21 days with SW_IN
...........668
Look up table with window size of 28 days with SW_IN
....431
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................659
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................663
Look up table with window size of 21 days with SW_IN
...............666
Look up table with window size of 28 days with SW_IN
........664
Look up table with window size of 35 days with SW_IN
..213
Look up table with window size of 42 days with SW_IN
13
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.95
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.181
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....561
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......625
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
51
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........628
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.1
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.181
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........639
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...333
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........607
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....551
Look up table with window size of 21 days with SW_IN
8
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............623
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......662
Look up table with window size of 21 days with SW_IN
.100
Look up table with window size of 28 days with SW_IN
14
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................637
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........674
Look up table with window size of 21 days with SW_IN
...364
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................655
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............663
Look up table with window size of 21 days with SW_IN
......680
Look up table with window size of 28 days with SW_IN
8
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................610
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................674
Look up table with window size of 21 days with SW_IN
...........648
Look up table with window size of 28 days with SW_IN
....411
Look up table with window size of 35 days with SW_IN
43
Look up table with window size of 42 days with SW_IN
18
Look up table with window size of 49 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................647
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................680
Look up table with window size of 21 days with SW_IN
...............644
Look up table with window size of 28 days with SW_IN
.........699
Look up table with window size of 35 days with SW_IN
..209
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.181
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..266
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......660
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
16
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........622
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.188
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........640
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...329
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........656
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....506
Look up table with window size of 21 days with SW_IN
5
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............657
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......645
Look up table with window size of 21 days with SW_IN
97
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................645
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........657
Look up table with window size of 21 days with SW_IN
...370
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................654
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............659
Look up table with window size of 21 days with SW_IN
......660
Look up table with window size of 28 days with SW_IN
27
Look up table with window size of 35 days with SW_IN
6
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................633
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................666
Look up table with window size of 21 days with SW_IN
...........663
Look up table with window size of 28 days with SW_IN
....436
Look up table with window size of 35 days with SW_IN
2
Look up table with window size of 42 days with SW_IN
1
Look up table with window size of 49 days with SW_IN
0
Look up table with window size of 56 days with SW_IN
0
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
1
Mean diurnal course with window size of 7 days: .
1
Mean diurnal course with window size of 14 days: .
1
Mean diurnal course with window size of 21 days: .
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................635
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................1
Look up table with window size of 14 days with SW_IN
......................677
Look up table with window size of 21 days with SW_IN
...............651
Look up table with window size of 28 days with SW_IN
.........696
Look up table with window size of 35 days with SW_IN
..217
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
1
Look up table with window size of 56 days with SW_IN
1
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
51
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
61
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
79
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....464
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....561
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......633
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
43
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........630
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.181
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........637
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...1
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...335
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........654
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....513
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............646
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......675
Look up table with window size of 21 days with SW_IN
75
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................636
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........665
Look up table with window size of 21 days with SW_IN
...368
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................662
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............624
Look up table with window size of 21 days with SW_IN
.......670
Look up table with window size of 28 days with SW_IN
49
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................660
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................5
Mean diurnal course with window size of 2 days: .
.................3
Look up table with window size of 14 days with SW_IN
.................662
Look up table with window size of 21 days with SW_IN
..........676
Look up table with window size of 28 days with SW_IN
...395
Look up table with window size of 35 days with SW_IN
4
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................663
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................668
Look up table with window size of 21 days with SW_IN
...............661
Look up table with window size of 28 days with SW_IN
........666
Look up table with window size of 35 days with SW_IN
..219
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...312
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
8
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....467
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....556
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......642
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
34
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........663
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.148
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........657
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...316
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........660
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....507
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............667
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......647
Look up table with window size of 21 days with SW_IN
85
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................626
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........665
Look up table with window size of 21 days with SW_IN
...371
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
8
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................669
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............659
Look up table with window size of 21 days with SW_IN
......663
Look up table with window size of 28 days with SW_IN
17
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................641
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................1
Look up table with window size of 14 days with SW_IN
.................672
Look up table with window size of 21 days with SW_IN
..........686
Look up table with window size of 28 days with SW_IN
....405
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................663
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................672
Look up table with window size of 21 days with SW_IN
...............663
Look up table with window size of 28 days with SW_IN
........685
Look up table with window size of 35 days with SW_IN
.196
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.181
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....460
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....556
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......661
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
15
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........647
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.164
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........669
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...304
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........631
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....3
Mean diurnal course with window size of 2 days: .
.....1
Look up table with window size of 14 days with SW_IN
.....516
Look up table with window size of 21 days with SW_IN
16
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............658
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......662
Look up table with window size of 21 days with SW_IN
79
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................586
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........1
Look up table with window size of 14 days with SW_IN
..........690
Look up table with window size of 21 days with SW_IN
...390
Look up table with window size of 28 days with SW_IN
6
Look up table with window size of 35 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................648
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............692
Look up table with window size of 21 days with SW_IN
......668
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................668
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................672
Look up table with window size of 21 days with SW_IN
..........660
Look up table with window size of 28 days with SW_IN
....405
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................626
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................1
Look up table with window size of 14 days with SW_IN
......................613
Look up table with window size of 21 days with SW_IN
................659
Look up table with window size of 28 days with SW_IN
.........652
Look up table with window size of 35 days with SW_IN
...259
Look up table with window size of 42 days with SW_IN
47
Look up table with window size of 49 days with SW_IN
18
Look up table with window size of 56 days with SW_IN
4
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
23
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...319
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......670
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........568
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..6
Mean diurnal course with window size of 2 days: .
..13
Look up table with window size of 14 days with SW_IN
..200
Look up table with window size of 21 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........635
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...337
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........619
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....539
Look up table with window size of 21 days with SW_IN
9
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............642
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......4
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......674
Look up table with window size of 21 days with SW_IN
79
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................654
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........673
Look up table with window size of 21 days with SW_IN
...349
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................591
Mean diurnal course with window size of 0 days: .
..............1
Mean diurnal course with window size of 1 days: .
..............2
Mean diurnal course with window size of 2 days: .
..............4
Look up table with window size of 14 days with SW_IN
..............662
Look up table with window size of 21 days with SW_IN
.......671
Look up table with window size of 28 days with SW_IN
54
Look up table with window size of 35 days with SW_IN
17
Look up table with window size of 42 days with SW_IN
6
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................656
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................664
Look up table with window size of 21 days with SW_IN
..........667
Look up table with window size of 28 days with SW_IN
....401
Look up table with window size of 35 days with SW_IN
17
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................670
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................660
Look up table with window size of 21 days with SW_IN
...............679
Look up table with window size of 28 days with SW_IN
........673
Look up table with window size of 35 days with SW_IN
.197
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....557
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......648
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
28
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........631
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.2
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.178
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........636
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...337
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........648
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....499
Look up table with window size of 21 days with SW_IN
20
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............645
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......2
Look up table with window size of 14 days with SW_IN
.......653
Look up table with window size of 21 days with SW_IN
99
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................656
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........646
Look up table with window size of 21 days with SW_IN
...357
Look up table with window size of 28 days with SW_IN
17
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................638
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............2
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............674
Look up table with window size of 21 days with SW_IN
......661
Look up table with window size of 28 days with SW_IN
25
Look up table with window size of 35 days with SW_IN
8
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................651
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................661
Look up table with window size of 21 days with SW_IN
..........670
Look up table with window size of 28 days with SW_IN
....420
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
2
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................645
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................658
Look up table with window size of 21 days with SW_IN
...............636
Look up table with window size of 28 days with SW_IN
.........643
Look up table with window size of 35 days with SW_IN
..239
Look up table with window size of 42 days with SW_IN
33
Look up table with window size of 49 days with SW_IN
17
Look up table with window size of 56 days with SW_IN
8
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...315
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...386
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....457
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
11
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......638
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Look up table with window size of 14 days with SW_IN
34
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........662
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.149
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........652
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...1
Look up table with window size of 14 days with SW_IN
...320
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........629
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....5
Mean diurnal course with window size of 2 days: .
.....2
Look up table with window size of 14 days with SW_IN
.....504
Look up table with window size of 21 days with SW_IN
25
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............624
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......5
Mean diurnal course with window size of 2 days: .
.......4
Look up table with window size of 14 days with SW_IN
.......658
Look up table with window size of 21 days with SW_IN
.99
Look up table with window size of 28 days with SW_IN
5
Look up table with window size of 35 days with SW_IN
4
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................619
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........6
Mean diurnal course with window size of 2 days: .
..........4
Look up table with window size of 14 days with SW_IN
..........622
Look up table with window size of 21 days with SW_IN
....341
Look up table with window size of 28 days with SW_IN
74
Look up table with window size of 35 days with SW_IN
10
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................658
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............678
Look up table with window size of 21 days with SW_IN
......672
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................628
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................685
Look up table with window size of 21 days with SW_IN
..........638
Look up table with window size of 28 days with SW_IN
....452
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................654
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................666
Look up table with window size of 21 days with SW_IN
...............676
Look up table with window size of 28 days with SW_IN
........676
Look up table with window size of 35 days with SW_IN
..203
Look up table with window size of 42 days with SW_IN
4
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
16
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....462
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....558
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......651
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
21
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........656
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.5
Look up table with window size of 14 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........659
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...309
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........615
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....552
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............579
Mean diurnal course with window size of 0 days: .
........0
Mean diurnal course with window size of 1 days: .
........0
Mean diurnal course with window size of 2 days: .
........3
Look up table with window size of 14 days with SW_IN
........684
Look up table with window size of 21 days with SW_IN
.126
Look up table with window size of 28 days with SW_IN
7
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................655
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........652
Look up table with window size of 21 days with SW_IN
...347
Look up table with window size of 28 days with SW_IN
21
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................642
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............678
Look up table with window size of 21 days with SW_IN
......652
Look up table with window size of 28 days with SW_IN
30
Look up table with window size of 35 days with SW_IN
3
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................644
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................650
Look up table with window size of 21 days with SW_IN
...........671
Look up table with window size of 28 days with SW_IN
....399
Look up table with window size of 35 days with SW_IN
19
Look up table with window size of 42 days with SW_IN
22
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................642
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................1
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................651
Look up table with window size of 21 days with SW_IN
...............659
Look up table with window size of 28 days with SW_IN
.........670
Look up table with window size of 35 days with SW_IN
..232
Look up table with window size of 42 days with SW_IN
9
Look up table with window size of 49 days with SW_IN
5
Look up table with window size of 56 days with SW_IN
8
Look up table with window size of 63 days with SW_IN
0
Look up table with window size of 70 days with SW_IN
0
Mean diurnal course with window size of 7 days: .
0
Mean diurnal course with window size of 14 days: .
1
Mean diurnal course with window size of 21 days: .
0
Mean diurnal course with window size of 28 days: .
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..266
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...388
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....461
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....559
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......596
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Mean diurnal course with window size of 2 days: .
8
Look up table with window size of 14 days with SW_IN
67
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........656
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.155
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........645
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...1
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...325
Look up table with window size of 21 days with SW_IN
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........626
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....534
Look up table with window size of 21 days with SW_IN
7
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............629
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......1
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......681
Look up table with window size of 21 days with SW_IN
88
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................638
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........678
Look up table with window size of 21 days with SW_IN
...359
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................638
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............677
Look up table with window size of 21 days with SW_IN
......651
Look up table with window size of 28 days with SW_IN
42
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................662
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................656
Look up table with window size of 21 days with SW_IN
..........670
Look up table with window size of 28 days with SW_IN
....413
Look up table with window size of 35 days with SW_IN
4
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................668
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................669
Look up table with window size of 21 days with SW_IN
...............675
Look up table with window size of 28 days with SW_IN
........665
Look up table with window size of 35 days with SW_IN
..198
Look up table with window size of 42 days with SW_IN
4
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.149
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.180
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...380
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
7
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....460
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
1
Look up table with window size of 21 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....547
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
15
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......651
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
25
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........636
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.168
Look up table with window size of 21 days with SW_IN
4
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........659
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...3
Look up table with window size of 14 days with SW_IN
...311
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........655
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....511
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............606
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......691
Look up table with window size of 21 days with SW_IN
.92
Look up table with window size of 28 days with SW_IN
10
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................604
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........2
Look up table with window size of 14 days with SW_IN
..........706
Look up table with window size of 21 days with SW_IN
...352
Look up table with window size of 28 days with SW_IN
12
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................657
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............666
Look up table with window size of 21 days with SW_IN
......659
Look up table with window size of 28 days with SW_IN
26
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................662
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................649
Look up table with window size of 21 days with SW_IN
..........648
Look up table with window size of 28 days with SW_IN
....419
Look up table with window size of 35 days with SW_IN
18
Look up table with window size of 42 days with SW_IN
7
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................662
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................676
Look up table with window size of 21 days with SW_IN
...............644
Look up table with window size of 28 days with SW_IN
........676
Look up table with window size of 35 days with SW_IN
..206
Look up table with window size of 42 days with SW_IN
15
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..220
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...319
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...376
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
11
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....556
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......656
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
20
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........614
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.6
Look up table with window size of 14 days with SW_IN
.191
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........639
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...334
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........655
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....1
Look up table with window size of 14 days with SW_IN
.....510
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............642
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......668
Look up table with window size of 21 days with SW_IN
87
Look up table with window size of 28 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................639
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........663
Look up table with window size of 21 days with SW_IN
...371
Look up table with window size of 28 days with SW_IN
2
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................630
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............3
Look up table with window size of 14 days with SW_IN
.............611
Look up table with window size of 21 days with SW_IN
.......673
Look up table with window size of 28 days with SW_IN
80
Look up table with window size of 35 days with SW_IN
10
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................660
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................651
Look up table with window size of 21 days with SW_IN
..........663
Look up table with window size of 28 days with SW_IN
....423
Look up table with window size of 35 days with SW_IN
3
Look up table with window size of 42 days with SW_IN
5
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................669
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................663
Look up table with window size of 21 days with SW_IN
...............675
Look up table with window size of 28 days with SW_IN
........679
Look up table with window size of 35 days with SW_IN
.193
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...383
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Look up table with window size of 14 days with SW_IN
2
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....549
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
13
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......653
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
23
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........642
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.169
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........594
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...7
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...337
Look up table with window size of 21 days with SW_IN
35
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........665
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....502
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............630
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......665
Look up table with window size of 21 days with SW_IN
.103
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................610
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........4
Look up table with window size of 14 days with SW_IN
..........663
Look up table with window size of 21 days with SW_IN
...398
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................644
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............674
Look up table with window size of 21 days with SW_IN
......686
Look up table with window size of 28 days with SW_IN
4
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................643
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................1
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................665
Look up table with window size of 21 days with SW_IN
..........680
Look up table with window size of 28 days with SW_IN
....414
Look up table with window size of 35 days with SW_IN
1
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................616
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................2
Look up table with window size of 14 days with SW_IN
......................689
Look up table with window size of 21 days with SW_IN
...............649
Look up table with window size of 28 days with SW_IN
.........686
Look up table with window size of 35 days with SW_IN
..225
Look up table with window size of 42 days with SW_IN
6
Look up table with window size of 49 days with SW_IN
2
Look up table with window size of 56 days with SW_IN
4
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.110
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.179
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..215
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
5
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...314
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...383
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
5
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....551
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
11
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......652
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........659
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.2
Look up table with window size of 14 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........658
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...1
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...313
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........643
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....521
Look up table with window size of 21 days with SW_IN
2
Look up table with window size of 28 days with SW_IN
0
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............641
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......662
Look up table with window size of 21 days with SW_IN
95
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................624
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........2
Mean diurnal course with window size of 2 days: .
..........3
Look up table with window size of 14 days with SW_IN
..........636
Look up table with window size of 21 days with SW_IN
....403
Look up table with window size of 28 days with SW_IN
8
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................621
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............664
Look up table with window size of 21 days with SW_IN
.......657
Look up table with window size of 28 days with SW_IN
65
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................662
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................674
Look up table with window size of 21 days with SW_IN
..........666
Look up table with window size of 28 days with SW_IN
....394
Look up table with window size of 35 days with SW_IN
7
Look up table with window size of 42 days with SW_IN
0
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................657
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................671
Look up table with window size of 21 days with SW_IN
...............670
Look up table with window size of 28 days with SW_IN
........664
Look up table with window size of 35 days with SW_IN
..200
Look up table with window size of 42 days with SW_IN
12
Look up table with window size of 49 days with SW_IN
3
Look up table with window size of 56 days with SW_IN
2
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..267
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...375
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....560
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......663
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
13
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........626
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.185
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........634
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...325
Look up table with window size of 21 days with SW_IN
14
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........627
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....1
Look up table with window size of 14 days with SW_IN
.....533
Look up table with window size of 21 days with SW_IN
5
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............642
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......2
Look up table with window size of 14 days with SW_IN
.......661
Look up table with window size of 21 days with SW_IN
94
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................618
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........2
Look up table with window size of 14 days with SW_IN
..........677
Look up table with window size of 21 days with SW_IN
...364
Look up table with window size of 28 days with SW_IN
14
Look up table with window size of 35 days with SW_IN
1
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................627
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............647
Look up table with window size of 21 days with SW_IN
.......675
Look up table with window size of 28 days with SW_IN
27
Look up table with window size of 35 days with SW_IN
23
Look up table with window size of 42 days with SW_IN
9
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................652
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................4
Look up table with window size of 14 days with SW_IN
.................681
Look up table with window size of 21 days with SW_IN
..........671
Look up table with window size of 28 days with SW_IN
...397
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................660
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................3
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................670
Look up table with window size of 21 days with SW_IN
...............662
Look up table with window size of 28 days with SW_IN
........655
Look up table with window size of 35 days with SW_IN
..229
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..260
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
7
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...321
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...386
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....463
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Look up table with window size of 14 days with SW_IN
3
Look up table with window size of 21 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....562
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......646
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
30
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........633
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.1
Look up table with window size of 14 days with SW_IN
.168
Look up table with window size of 21 days with SW_IN
9
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........615
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...1
Mean diurnal course with window size of 2 days: .
...0
Look up table with window size of 14 days with SW_IN
...357
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........665
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....499
Look up table with window size of 21 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............645
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......1
Look up table with window size of 14 days with SW_IN
.......654
Look up table with window size of 21 days with SW_IN
99
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................658
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........4
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........650
Look up table with window size of 21 days with SW_IN
...351
Look up table with window size of 28 days with SW_IN
11
Look up table with window size of 35 days with SW_IN
2
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................639
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............3
Look up table with window size of 14 days with SW_IN
.............666
Look up table with window size of 21 days with SW_IN
.......677
Look up table with window size of 28 days with SW_IN
20
Look up table with window size of 35 days with SW_IN
0
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................622
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................676
Look up table with window size of 21 days with SW_IN
...........661
Look up table with window size of 28 days with SW_IN
....422
Look up table with window size of 35 days with SW_IN
10
Look up table with window size of 42 days with SW_IN
14
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................632
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................674
Look up table with window size of 21 days with SW_IN
...............665
Look up table with window size of 28 days with SW_IN
.........651
Look up table with window size of 35 days with SW_IN
..236
Look up table with window size of 42 days with SW_IN
10
Look up table with window size of 49 days with SW_IN
9
Look up table with window size of 56 days with SW_IN
2
Finished gap filling of 'VPD' in 5 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
65
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.122
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..221
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..263
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...318
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...387
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....460
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....558
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......663
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
13
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........644
Mean diurnal course with window size of 0 days: .
.0
Mean diurnal course with window size of 1 days: .
.0
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.167
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........593
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...4
Mean diurnal course with window size of 2 days: .
...8
Look up table with window size of 14 days with SW_IN
...360
Look up table with window size of 21 days with SW_IN
8
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........638
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....0
Look up table with window size of 14 days with SW_IN
.....527
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............623
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......692
Look up table with window size of 21 days with SW_IN
84
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................660
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........672
Look up table with window size of 21 days with SW_IN
...341
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................651
Mean diurnal course with window size of 0 days: .
.............0
Mean diurnal course with window size of 1 days: .
.............0
Mean diurnal course with window size of 2 days: .
.............0
Look up table with window size of 14 days with SW_IN
.............669
Look up table with window size of 21 days with SW_IN
......683
Look up table with window size of 28 days with SW_IN
5
Finished gap filling of 'VPD' in 2 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................645
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................653
Look up table with window size of 21 days with SW_IN
...........647
Look up table with window size of 28 days with SW_IN
....426
Look up table with window size of 35 days with SW_IN
26
Look up table with window size of 42 days with SW_IN
6
Look up table with window size of 49 days with SW_IN
2
Finished gap filling of 'VPD' in 3 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................633
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................662
Look up table with window size of 21 days with SW_IN
...............637
Look up table with window size of 28 days with SW_IN
.........628
Look up table with window size of 35 days with SW_IN
...269
Look up table with window size of 42 days with SW_IN
21
Look up table with window size of 49 days with SW_IN
21
Look up table with window size of 56 days with SW_IN
6
Look up table with window size of 63 days with SW_IN
2
Finished gap filling of 'VPD' in 4 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 4 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 4, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 8 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 8, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 12 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
12
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 12, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 17 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
17
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 17, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 24 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
24
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 24, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 32 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
32
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 32, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 41 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
41
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 41, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 52 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
52
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 52, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 65 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
61
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 65, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 81 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
81
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 81, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 100 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.100
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 100, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 122 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.120
Mean diurnal course with window size of 0 days: .
1
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 122, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 150 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.150
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 150, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 182 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.182
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 182, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 221 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..220
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 221, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 267 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
..266
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
0
Look up table with window size of 21 days with SW_IN
0
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 267, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 322 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...322
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 322, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 388 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...386
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
2
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 388, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 468 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....468
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 468, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 562 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.....558
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
0
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
4
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 562, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
......656
Mean diurnal course with window size of 0 days: .
0
Mean diurnal course with window size of 1 days: .
3
Mean diurnal course with window size of 2 days: .
0
Look up table with window size of 14 days with SW_IN
13
Look up table with window size of 21 days with SW_IN
1
Look up table with window size of 28 days with SW_IN
3
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 811 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........610
Mean diurnal course with window size of 0 days: .
..0
Mean diurnal course with window size of 1 days: .
..2
Mean diurnal course with window size of 2 days: .
.0
Look up table with window size of 14 days with SW_IN
.191
Look up table with window size of 21 days with SW_IN
8
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 811, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 973 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.........632
Mean diurnal course with window size of 0 days: .
...0
Mean diurnal course with window size of 1 days: .
...0
Mean diurnal course with window size of 2 days: .
...1
Look up table with window size of 14 days with SW_IN
...340
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 973, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1167 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
...........622
Mean diurnal course with window size of 0 days: .
.....0
Mean diurnal course with window size of 1 days: .
.....0
Mean diurnal course with window size of 2 days: .
.....3
Look up table with window size of 14 days with SW_IN
.....517
Look up table with window size of 21 days with SW_IN
24
Look up table with window size of 28 days with SW_IN
1
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1167, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1399 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
.............642
Mean diurnal course with window size of 0 days: .
.......0
Mean diurnal course with window size of 1 days: .
.......0
Mean diurnal course with window size of 2 days: .
.......0
Look up table with window size of 14 days with SW_IN
.......673
Look up table with window size of 21 days with SW_IN
84
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1399, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 1676 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
................643
Mean diurnal course with window size of 0 days: .
..........0
Mean diurnal course with window size of 1 days: .
..........0
Mean diurnal course with window size of 2 days: .
..........0
Look up table with window size of 14 days with SW_IN
..........666
Look up table with window size of 21 days with SW_IN
...361
Look up table with window size of 28 days with SW_IN
6
Finished gap filling of 'VPD' in 0 seconds. Artificial gaps filled: 227952, real gaps filled: 1676, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2008 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
....................597
Mean diurnal course with window size of 0 days: .
..............0
Mean diurnal course with window size of 1 days: .
..............3
Mean diurnal course with window size of 2 days: .
..............2
Look up table with window size of 14 days with SW_IN
..............678
Look up table with window size of 21 days with SW_IN
.......684
Look up table with window size of 28 days with SW_IN
44
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2008, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2405 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
........................653
Mean diurnal course with window size of 0 days: .
.................0
Mean diurnal course with window size of 1 days: .
.................0
Mean diurnal course with window size of 2 days: .
.................0
Look up table with window size of 14 days with SW_IN
.................669
Look up table with window size of 21 days with SW_IN
..........663
Look up table with window size of 28 days with SW_IN
....407
Look up table with window size of 35 days with SW_IN
10
Look up table with window size of 42 days with SW_IN
3
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2405, unfilled (long) gaps: 0.
New sEddyProc class for site 'ID'
Initialized variable 'VPD' with 2879 real gaps for gap filling.
Limited MDS algorithm for gap filling of 'VPD.gap_0' with LUT(SW_IN only) and MDC.
Look up table with window size of 7 days with SW_IN
............................655
Mean diurnal course with window size of 0 days: .
......................0
Mean diurnal course with window size of 1 days: .
......................0
Mean diurnal course with window size of 2 days: .
......................0
Look up table with window size of 14 days with SW_IN
......................670
Look up table with window size of 21 days with SW_IN
...............675
Look up table with window size of 28 days with SW_IN
........668
Look up table with window size of 35 days with SW_IN
..210
Look up table with window size of 42 days with SW_IN
1
Finished gap filling of 'VPD' in 1 seconds. Artificial gaps filled: 227952, real gaps filled: 2879, unfilled (long) gaps: 0.
```

```
Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
numbers without specifying argument 'seed'. There is a risk that those random
numbers are not statistically sound and the overall results might be invalid.
To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
```

```
# A tibble: 30 × 5
   gap_length  mean    sd error_high error_low
        <int> <dbl> <dbl>      <dbl>     <dbl>
 1          1  2.11  2.70       4.80   -0.590 
 2          4  1.87  2.36       4.23   -0.494 
 3          8  1.51  1.84       3.35   -0.327 
 4         12  2.23  2.25       4.48   -0.0121
 5         17  2.34  2.98       5.31   -0.639 
 6         24  2.35  1.88       4.23    0.469 
 7         32  2.28  2.18       4.46    0.0934
 8         41  2.15  2.13       4.28    0.0164
 9         52  2.45  1.89       4.34    0.560 
10         65  2.54  1.93       4.47    0.615 
# … with 20 more rows
```

```r
VPD_rmse_stat %>%
  mutate(gap_length = gap_length / 2) %>%
  ggplot(aes(gap_length)) +
  geom_ribbon(aes(ymin = error_low, ymax = error_high), alpha = .7) +
  geom_line(aes(y=mean)) +
  labs(x = "Gap Lengths [hours]", y = "RMSE [Pa]")
```

<img src="figure/MDS_gap_filling_quality.rmd/unnamed-chunk-18-1.png" width="672" style="display: block; margin: auto;" />

sessionInfo()
R version 4.1.3 (2022-03-10)
Platform: x86_64-redhat-linux-gnu (64-bit)
Running under: Fedora Linux 36 (Workstation Edition)

Matrix products: default
BLAS/LAPACK: /usr/lib64/libflexiblas.so.3.2

locale:
 [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
 [3] LC_TIME=en_GB.UTF-8        LC_COLLATE=en_US.UTF-8    
 [5] LC_MONETARY=en_GB.UTF-8    LC_MESSAGES=en_US.UTF-8   
 [7] LC_PAPER=en_GB.UTF-8       LC_NAME=C                 
 [9] LC_ADDRESS=C               LC_TELEPHONE=C            
[11] LC_MEASUREMENT=en_GB.UTF-8 LC_IDENTIFICATION=C       

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
 [1] furrr_0.2.3     future_1.24.0   xfun_0.30       lubridate_1.8.0
 [5] Metrics_0.1.4   forcats_0.5.1   stringr_1.4.0   dplyr_1.0.9    
 [9] purrr_0.3.4     readr_2.1.2     tidyr_1.2.0     tibble_3.1.7   
[13] ggplot2_3.3.5   tidyverse_1.3.1 workflowr_1.7.0

loaded via a namespace (and not attached):
 [1] httr_1.4.2        sass_0.4.1        bit64_4.0.5       vroom_1.5.7      
 [5] jsonlite_1.8.0    here_1.0.1        modelr_0.1.8      bslib_0.3.1      
 [9] assertthat_0.2.1  getPass_0.2-2     highr_0.9         cellranger_1.1.0 
[13] yaml_2.3.5        globals_0.14.0    pillar_1.7.0      backports_1.4.1  
[17] glue_1.6.2        digest_0.6.29     promises_1.2.0.1  rvest_1.0.2      
[21] colorspace_2.0-3  htmltools_0.5.2   httpuv_1.6.5      pkgconfig_2.0.3  
[25] broom_0.8.0       listenv_0.8.0     haven_2.4.3       scales_1.2.0     
[29] processx_3.5.3    whisker_0.4       later_1.3.0       tzdb_0.3.0       
[33] git2r_0.30.1      farver_2.1.0      generics_0.1.2    ellipsis_0.3.2   
[37] withr_2.5.0       cli_3.3.0         magrittr_2.0.3    crayon_1.5.1     
[41] readxl_1.4.0      evaluate_0.15     ps_1.6.0          fs_1.5.2         
[45] fansi_1.0.3       parallelly_1.31.0 xml2_1.3.3        tools_4.1.3      
[49] hms_1.1.1         lifecycle_1.0.1   munsell_0.5.0     reprex_2.0.1     
[53] callr_3.7.0       compiler_4.1.3    jquerylib_0.1.4   rlang_1.0.3      
[57] grid_4.1.3        rstudioapi_0.13   labeling_0.4.2    rmarkdown_2.13   
[61] gtable_0.3.0      codetools_0.2-18  DBI_1.1.2         R6_2.5.1         
[65] knitr_1.38        bit_4.0.4         fastmap_1.1.0     utf8_1.2.2       
[69] rprojroot_2.0.3   stringi_1.7.6     parallel_4.1.3    Rcpp_1.0.8.3     
[73] vctrs_0.4.1       dbplyr_2.1.1      tidyselect_1.1.2